Release 2016.11.18.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

  • mobile interface builder has a new control: Combobox (which is a drop down selection picker that sets a variable and executes a script). Ensure you update respective mobile app (iOS/Android).

ARC Downloads

ARC Free

Free

  • Includes a free 3rd party plugin robot skill per project
  • GPT-Powered AI support
  • 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
  • Premium support discount
  • 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
Premium support $14.99/ticket $9.99/ticket
Feature requests Yes
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

Elevate your robot's capabilities to the next level with Synthiam ARC Pro, unlocking a world of possibilities in robot programming.

#1  

DJ,

I see where the combobox sets the $SelectedIndex. Is there also a variable that contains the value of what was selected as text? I have an If/Then/Else to check the index but as the list gets longer it would be helpful if there was a variable like $SelectedValue.

PRO
Synthiam
#2  

Hi Jmp! There's a variable which stores the index of the selected combobox option. An IF condition can be used to determine which option was selected. Here's an example of an IF condition checking which of 4 options were selected using blockly. Of course, if you're familiar with programming, EZ-Script syntax can be used as well. However, we recommend starting with Blockly - even I use it :D

User-inserted image

#3  

DJ,

Thanks for the reply. That if statement is basically what I have now. What I was hopping for would be something like a $SelectedValue variable so I could just say:

SayEZB "$SelectedValue".

Maybe in a futre release? :)

PRO
USA
#4  

@jmp23834

If you use arrays you can minimize the script code and the repetition.


#keep the array updated with the combobox's options
DefineArray($names, 4)
$names[0]="Donald"
$names[1]="John"
$names[2]="Yoda"
$names[3]="Jane"

#also update the Array size to  match the number of combobox's options
DefineArray($titles, 4)
$titles[0]="Mr"
$titles[1]="Mr"
$titles[2]="Master"
$titles[3]="Mrs"

:loop
    WaitForChange($SelectedIndex) 
    SayEzb("Hello " + $titles[$SelectedIndex] + " " + $names[$SelectedIndex])
Goto(loop)

#5  

ptp,

Thanks, this is a good idea. I will give it a try tomorrow.

JP