This utility class allows your phone to talk back to you any information you need. You can use this utility class to interact with the user by combining it with the Voice-2-Text utility class (coming soon).

Say hi!

Intent speak = new Intent(Aware_TTS.ACTION_AWARE_TTS_SPEAK);
speak.putExtra(Aware_TTS.EXTRA_TTS_TEXT, "Hi there, master!");
speak.putExtra(Aware_TTS.EXTRA_TTS_REQUESTER, "your_app_package_name");
sendBroadcast(speak);
Text-2-Speech