Merge branch 'master' of github.com:chrys87/fenrir
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Espeak driver
|
||||
|
||||
class speech():
|
||||
isInitialized = False
|
||||
|
||||
def __init__(self):
|
||||
try:
|
||||
pass
|
||||
isInitialized = True
|
||||
except:
|
||||
initialized = False
|
||||
|
||||
def speak(text, queueable=True):
|
||||
if queueable == False: self.stop()
|
||||
|
||||
def stop(self):
|
||||
pass
|
||||
|
||||
def clear_buffer(self):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user