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
Free
- Includes one free 3rd party plugin robot skill per project
- Trial cloud services
- Free with trial limitations
For schools, personal use & organizations. This edition is updated every 6-12 months.
ARC Pro
Only $8.99/mo
- 2 or more PCs simultaneously
- Includes unlimited skills
- Cloud backup
- And much more
Experience the latest features and bug fixes weekly. A Pro subscription is required to use this edition.
Runtime
Free
- Load and run any ARC project
- Operates in read-only mode
- Unlimited robot skills
- Early access fixes & features
Have you finished programming your robot? Use this to run existing ARC projects for free*.
- Minimum requirements are Windows 10 or higher with 2+gb ram and 500+MB free space.
- Recommended requirements are Windows 10 or higher with 8+gb ram and 1000+MB free space.
- ARC Free known-issues can be viewed by clicking here.
- Get more information about each ARC edition by clicking here.
- See what's new in the latest versions with Release notes.
Compare Editions
Feature | ARC FREE |
ARC PRO |
---|---|---|
Get ARC for Free | View Plans | |
Usage | Personal DIY Education |
Personal DIY Education Business |
Early access to new features & fixes | Yes | |
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 recongition phrases* | 10 | Unlimited |
Camera devices* | 1 | Unlimited |
Vision resolution | max 320x240 | Unlimited |
Interface builder* | 2 | Unlimited |
Cloud project size | 128 MB | |
Cloud project revision history | Yes | |
Create Exosphere requests | 50/month | |
Exosphere API access | Contact Us | |
Volume license discounts | Contact Us | |
Get ARC for Free | View Plans |
** 1,000 per cognitive type (vision recognition, speech recognition, face detection, sentiment, text recognition, emotion detection, azure text to speech)
Upgrade to ARC Pro
ARC Pro is your passport to a world of endless possibilities in robot programming, waiting for you to explore.
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