Notifications
Clear all
Topic starter
27/03/2018 9:54 pm
Select the standard audio output of the Raspberry Pi to the "headphone jack", and write in the terminal the following:
amixer cset numid=3 1
In the module Python QBOtalk.py modify this code:
def SpeechText(self, text):
speak = "espeak -ves+f3 "" + text + "" --stdout | aplay -D hw:0,0"
result = subprocess.call(speak, shell = True)
print text