changing class name
This commit is contained in:
parent
64092b842e
commit
ea6b1be15e
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -21,9 +21,9 @@ class Microphone:
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
with sd.InputStream(callback = self.audio_callback):
|
with sd.InputStream(callback = self.audio_callback):
|
||||||
Affichage().start()
|
Display().start()
|
||||||
|
|
||||||
class Affichage:
|
class Display:
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.buffer = 100 # milliseconds
|
self.buffer = 100 # milliseconds
|
||||||
|
|
Reference in a new issue