add inner class structure
This commit is contained in:
parent
94720a74ce
commit
0395df8d30
11 changed files with 115 additions and 7 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue