In the Glass application that I am working on, two users can talk to each other. Once the application starts running, I turn on the speech recognition. When the user says "Talk On," I stop speech recognition, start capturing audio data, and send it to the other end.
I now need a way for the user to turn the talk mode off.
As speech recognizer is not running during raw audio transmission, I cannot listen for "Talk Off" command.
I guess I could process Gestures such Gesture.TAP or Gesture.TWO_TAP to turn talk mode off and switch back to speech recognition.
I am wondering if there is a recommended paradigm for such cases in Glass. Regards.