changing command and piping output to next command

This commit is contained in:
talksik
2023-04-27 16:45:02 -07:00
parent 1ced7dad0e
commit 507b36aaae
+1 -1
View File
@@ -4,7 +4,7 @@ import os
def robot(text):
os.system("espeak ' " + text + " ' ")
os.system("espeak --stdin '" + text + "' | aplay -D plughw:2,0 ")
if __name__ == '__main__':