Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 340 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 340 Bytes

Personal-Assistance

C++ text to speech application which acts as a personal assistant. If you need to listen to the speech, then you must include these 4 lines of code:-

string phrase = "whatever messages you want to listen to"; string command = "espeak "" + phrase + """; const char *charCommand = command.c_str(); system(charCommand);