Release 2012.12.31.00

(Autonomous Robot Control Software)
Make robots with the easiest robot programming software. Experience user-friendly features that make any robot easy to program.

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.

Recommended

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
* 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

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

United Kingdom
#1  

Happy New Year to you DJ

#2  

Ahh! DJ, your amazing! Thanks for this. I never expected you to do this enhancement so quickly. This will be so nice to have!

Just yesterday I had a few friends over to show off B9 and thought I had the Speech Recognition pauesd. There was lots going on with the group and I was fiddling with some internal settings and all of the sudden he rotated at the waist when he thought he heard a command. He almost ripped out some of his own wires along with my hand. I know I should of had him powered down but I thought I could just make a quick adjustment on the fly.

This is so welcomed and a well received New Years present! Now I need to figure out how to use this. What fun! :D

Thanks again, Dave Schulpius :D Happy New Years right back at ya!

#3  

DJ great work like always and happy new years so far some of the scripts i been playing with not too hard and examples makes it a little easy too

New Zealand
#5  

Awesome.... it is like you were reading my mind.

I was struggling with the need to write a script to limit the possible voice commands my bot had to choose from.

You've saved me the hard work!

Happy New Year from New Zealand

#6  

Sadly I can't get this new function to work for me :( and I was so excited. Been trying all afternoon but whatever I try, I keep getting the same behaviour as always. If I run a MP3 Trigger file that I've set a timeout for, the Speech Recognition will be paused for that amount of time (as it should be). But if I next want to pause the SR indefinitely and use the Disable box inside and at the top of the SR panel it will only stay paused for the amount of time stated in the earlier command. It also seems that the New EZ-Script Command: WaitForSpeech() is completely overridden by any MP3 Trigger SR function. No matter how many MS pause is stated there is only a few MS timeout for the new command when a MP3 Trigger SR function has been used before. Sorry, Dave

New Zealand
#7  

Hey Dave... Have you tried saving your file, closing ARC and then restarting the software? The timer function in WaitforSpeech() did not work for me until I started fresh using the example DJ gave us, saved his file and then reopened the software and added the script to my project.

  • Wayne
PRO
Synthiam
#8  

Dave, all tests are successful. Review your project:)