kuukar-rpi/kuukar/kuukar_voice.py

9 lines
242 B
Python
Raw Permalink Normal View History

2022-10-30 08:57:00 +00:00
from kuukar.kuukar_lcd import lcd
from kuukar.kuukar_leds import leds
2022-10-23 06:49:59 +00:00
class voice:
def __init__(self, lcd: lcd, leds: leds) -> None:
2022-10-23 06:49:59 +00:00
self.lcd = lcd
self.leds = leds
def handle_voice_prompt(self, command):
pass