Close

673 Results for "python"

  • PYTHON SOFTWARE

  • The LIL TTS BOT module has a software that is installed on any tablet PC. The software communicates with the module using USB cable. The software written in Python and it is available on my Github: https://github.com/hamzakhalidhk/LIL-TTS-BOT
  • Python Program

  • I chose to use Flask as a webserver that would receive GET requests from the main website. The requests consist of the name and category of the part. After Flask handles it the data gets parsed, then the MySQL server gets queried to find out the location...
  • Python Script

  • With our operating system installed along with our two Python modules for reading sensor data and sending data to Initial State, we are ready to write our Python script. The following script will create/append to an Initial State data bucket, read the...
  • Python Code

  • For this example, we're just going to turn on an LED with the RPi.GPIO library already included in your O.S. Make sure you know the exact location of your code file: i.e. '/Documents/PythonCode/LED.py' We're going to create our python code file with...
  • Writing the python code

  • You will need to write python code to implement your ai and be able to scan and find the expiration dates. Due to this being a unique project you will most likely need to write your own python code. For help you can use youtube and read websites that...
  • Download python and libraries

  • Install python3 on the Raspberrysudo apt-get install python3 Install python3 RPi GPIO library sudo apt-get install python3-rpi.gpio  Download https://github.com/mxgxw/MFRC522-python then replace print "" by print("") to make it suitable...
  • Python Code, Stripsym.py

  • Stripsym.py On the PC side a small lump of python code, Stripsym.py, reads a YAML file to configure the pygame graphics window, number of LEDs, and LED format. The number of LEDs and format must match the target. A strip or matrix configuration is also...
  • Using Bluetooth (Python Script)

  • from machine import Pin, UART uart = UART(0, 9600)led = Pin(13, Pin.OUT) while True:  if uart.any() > 0:    data = uart.read()    print(data)    if "on" in data:      led.value(1)     ...
  • Write Your Python Code

  • ***A big THANK YOU to my friend Jimmie Becker! He helped me figure this code out***Go to the file section of this tutorial and download the python file. It will take advantage of apple's dictation feature and use it to perform tasks based on spoken keywords. Another...
  • Python Timed Operations Thread

  • Here is an example I figured out, of how to create a Python class to run a function in a separate thread, with a defined time interval, that is pausable/stoppable. It subclasses the Thread class, and uses the help of an Event object...