migrate to package

This commit is contained in:
Siwat Sirichai 2022-10-30 13:29:32 +07:00
parent 3d5a084b47
commit 50fc6dda3f
16 changed files with 52 additions and 7 deletions

11
kuukar/kuukar_voice.py Normal file
View file

@ -0,0 +1,11 @@
from kuukar_lcd import lcd
from kuukar_leds import leds
from kuukar_noise import noise
class voice:
def __init__(self, lcd: lcd, leds: leds) -> None:
self.lcd = lcd
self.leds = leds
def handle_voice_prompt(self, command):
pass