Speech class added for es.py.

This commit is contained in:
Storm Dragon 2016-07-04 23:17:19 -04:00
parent 026bc9e4f2
commit 903944ca25

View File

@ -0,0 +1,16 @@
#!/usr/bin/python
# Espeak driver
class speech():
def __init__():
pass
def start_speech(text, queueable=True):
if queueable == False: stop_speech()
def stop_speech():
pass
def clear_speech_buffer():
pass