Fix class
some syntax and name problems.
This commit is contained in:
parent
903944ca25
commit
9e84f8c78e
@ -3,14 +3,14 @@
|
|||||||
# Espeak driver
|
# Espeak driver
|
||||||
|
|
||||||
class speech():
|
class speech():
|
||||||
def __init__():
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def start_speech(text, queueable=True):
|
def speak(text, queueable=True):
|
||||||
if queueable == False: stop_speech()
|
if queueable == False: self.stop()
|
||||||
|
|
||||||
def stop_speech():
|
def stop(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def clear_speech_buffer():
|
def clear_buffer(self):
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user