Remote Mouse icon Remote Mouse Scriptable Remote Mouse for ARC: control PC cursor and ARC window via ControlCommand, using voice, camera or I/O inputs; shows cursor coordinates. Try it →

Release 2012.12.31.00

Desktop — Windows

ARC Release

ARC (Autonomous Robot Control) is Synthiam's flagship desktop robot programming platform. Build, program, and control any robot with powerful AI, 500+ plugins, and a visual no-code interface — all from your PC.

🤖 500+ Robot Plugins
🧠 AI & Machine Learning
☁️ Synthiam Cloud
🖥️ Windows 10 or 11

Change Release Notes

Happy New Year!:)

  • New EZ-Script Command: WaitForSpeech() will wait the specified number of seconds for one of the specified words/phrases to be detected by the speech recognition

  • MP3 Trigger will not unpause the speech recognition control if it was already paused before playing audio

  • speech recognition culture is dynamically detected, but prefers English US Culture to be installed. The Speech Recognition only supports a select number of cultures - that is an issue you can take up with Microsoft:). Check the Debug Control for more information when loading Speech Recognition.

[feature] WaitForSpeech( timeOut Seconds, phrases ) . Pauses and waits for one of the specified phrases to be spoken. . Returns the phrase that was spoken. . Will return "timeout" if no word is detected in the specified timeout length. . Example: WaitForSpeech(30, "Yes", "No") . Example: $value = WaitForSpeech(30, "Yes", "No") [/feature]

This example can be found in Examples -> Functions -> WaitForSpeech The code below will ask the user a YES or NO question if they would like to know today's date. If the timeout is exceeded (10 seconds), then the script will repeat.


:START

SayWait("Would you like to know todays date?")

$response = WaitForSpeech(10, "Yes", "No")

if ($response = "Yes")
  Say("Today's date is $date")
  Halt()
elseif ($response = "No")
  Say("Okay, I will keep it a secret")
  Halt()
else
  SayWait("Hello, is anyone there?")

goto(START)

ARC Downloads

ARC

FREE
$0 always free
  • 1 third-party plugin skill per project
  • Trial cloud services
  • Personal, DIY & education use
  • Updated every 6–12 months
Recommended

ARC

PRO
$8.99 per month
  • Use on 2+ PCs simultaneously
  • Unlimited robot skills
  • Cloud backup & revision history
  • Weekly features & bug fixes
  • Business use permitted

ARC

RUNTIME
$0 always free
  • Load & run any ARC project
  • Read-only mode
  • Unlimited robot skills
  • Includes early access fixes & features
  • Minimum requirements: Windows 10 or higher, 2 GB RAM, 500 MB free disk space.
  • Recommended: Windows 10 or higher, 8 GB RAM, 1 GB free disk space.
  • Prices are in USD.
  • More about each edition: Download & install guide.
  • Latest changes: Release notes.

Compare Editions

Feature
ARC
FREE
ARC
PRO
Get ARC Free View Plans
Usage Personal · DIY · Education Personal · DIY · Education · Business
Early access to new features & fixes
Simultaneous microcontroller connections * 1 255
Robot skills * 20 Unlimited
Skill Store plugins * 1 Unlimited
Cognitive services usage ** 10 / day 6,000 / day
Auto-positions gait actions * 40 Unlimited
Speech recognition phrases * 10 Unlimited
Camera devices * 1 Unlimited
Vision resolution max 320×240 Unlimited
Interface builder * 2 Unlimited
Cloud project size 128 MB
Cloud project revision history
Create Exosphere requests 50 / month
Exosphere API access Contact Us
Volume license discounts Contact Us
Get ARC Free View Plans

* Per robot project

** 1,000 per cognitive type: vision recognition, speech recognition, face detection, sentiment, text recognition, emotion detection, azure text to speech


ARC Pro

Upgrade to ARC Pro

Experience the transformation – subscribe to Synthiam ARC Pro and watch your robot evolve into a marvel of innovation and intelligence.

#9  

Just yesterday I worked out some major bugs in my project. There were lots more problems then just my Speech Recognition unpausing. The problems presisted no matter what I tried or what DJ did to help out with upgrades. Thanks to DJ suggesting that I review my project I think I finally found it. I tried a tons of things so I'm not sure what really fixed it but I have an idea;

I was having major performance problems within ARC that were getting worse and worse. The program would lag badly and sometimes lock up and crash. It was driving me nuts. Window 7 was not effected but I could not decide if it was my laptop, win 7 or EZ-B. The problem got worse to the point I couldn't even click on a button within ARC and have it react. Then an EZ-B lock up and Program crash. Win 7 would stay working nicely. Then I realized that the problem had gotten worse as I added ADC port Value monitors from the Add Control feature. I have 9 ADC Value monitors running and all were watching different ADC ports on two different boards. Once I clicked the Pause box on all but a few ADC monitor windows all my problems went away and ARC ran perfectly! No lag, no crashes and also the Pause SR works properly now!

Now I'm able to get the speech recognition software to pause indefinitely by voice command till I speak a phrase it is listening for. Once it hears that phrase it will unpause and and start up listing again. Before this was fixed some of the problems I was having was B9 would move around when it thought it heard a command that was not really spoken. When I was doing something with the robot and thought the SR was paused this was kind of dangerous and annoying. NOW, I can say something like "Be quite you Cantankerous Canister" and he'll say something back to me through a file on the MP3 Trigger like "OK, Fine!". He then stops listening for anything except one phrase. I can program that phrase to be something like "Pay attention you Ninny" and again he'll say something (using the MP3 Trigger) back to me and start listening again. Very cool!

Thanks for all work the EZ-B team has put into this product and all the help!

Dave Schulpius