add inner class structure

This commit is contained in:
Siwat Sirichai 2022-10-23 13:49:59 +07:00
parent 94720a74ce
commit 0395df8d30
11 changed files with 115 additions and 7 deletions

View file

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