Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started
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 EZ-B v4
Related Control Bing Speech Recognition

ARC Pro

Upgrade to ARC Pro

ARC Early Access will give you immediate updates and new features needed to unleash your robot's potential!

PRO
Synthiam
#1  
Will this not work?

Code:


// 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");