Skip to main content

Putt Putt

My work put together a putt putt contest. The group built a stepper motor driven hole with paddles to knock the golf ball away, until the voice recognition heard a hot-word and stopped the motors.


A Raspberry Pi 3 runs Python code to control the 2 stepper motors. There is a Playstation Eye camera to input audio which detects a hotword detection using the Snowboy offline detection.






Comments

Popular posts from this blog

ESP MicroPython 16x2 LCD

   Install MicroPython on Wemos D1 Mini https://www.wemos.cc/en/latest/tutorials/d1/get_started_with_micropython_d1.html  https://micropython.org/download/esp8266/ Command line method of flashing MicroPython bin file (firmware): esptool.py --port PORT_NAME erase_flash esptool.py --port PORT_NAME --baud 1000000 write_flash --flash_size = 4MB -fm dio 0 FIRMWARE.bin   uPyCraft method of flashing MicroPython bin file (firmware):  https://how2electronics.com/esp32-micropython-upycraft-getting-started/