Asked — Edited

Is There Any Way To Detect If The Bing Speech Recognition Is Paused?

Is there any way to detect if the Bing Speech Recognition is "paused" or not? Alexa lights up LEDs when she is "listening". I wanted to write a script to light an LED that tells me when Bing is listening--the pause button is off, but I see no variables available for Bing's "Pause" feature.



Related Hardware (view all EZB hardware)
EZ-B V4 by EZ-Robot
EZ-B v4/2 robot controller: dual Cortex ARM, Wi-Fi, audio/video, 24 servo/digital ports, I2C/UART, camera and Synthiam ARC control for custom robots
Wi-Fi / USB
Servos 24
Camera
Audio
UART 3
I2C
ADC 8
Digital 24

Related Robot Skill (view all robot skills)
Accurate Bing cloud speech-to-text for ARC: wake-word, programmable control, $BingSpeech output, Windows language support, headset compatible

ARC Pro

Upgrade to ARC Pro

ARC Pro is your passport to a world of endless possibilities in robot programming, waiting for you to explore.

Author Avatar
PRO
Synthiam
#1  

Will this not work?


// Stop listening and set a global var and start the pulse script
ControlCommand("Bing Speech Recognition", "StopListening");
SetVar("$BingPaused", true);
ControlCommand("Pulse LED", "ScriptStart");

// Start listening and set a global var and stop the pulse script
ControlCommand("Bing Speech Recognition", "StartListening");
SetVar("$BingPaused", false);
ControlCommand("Pulse LED", "ScriptStop");