(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
This is a pretty big release update, as it includes a significant rewrite of the EZ-Script parser. I've ran a kabazillion use-case tests, which means it should be okay. If not, let me know what experiences you have
For example, you can do some pretty bizarre things with escape characters now...
Secondly, there's a re-write for continuous rotation servos to include speed control. This means your Continuous rotation Movement Panel will be slightly different, now including two speed dials for each wheel.
The mobile interface includes a joystick and servo pad as well, which won't be viewable on your mobile devices until both Android and iOS have been approved by the respective AppStores (1 or 2 days)

- fix Parenthesis in string error. If a string contained something like "Hello(" it would return an error because the parser thought Hello( was to be a function
- latest EZ-Script compiler that supports escaped characters of \" \r \n and fixes a bunch of things like "df()" and "E22"
- servo Pad uses a joystick control in mobile
- new mobile control for Joystick with analog speed adjustment for movement controls that support speed
- speed control for continuous rotation servos and the respective movement panel
- Updated JD, Roli & AdventureBot projects to use latest Mobile Interface Joystick control
- New EZ-Script command: MAP() which will make an input value to a specific range
For example, you can do some pretty bizarre things with escape characters now...
Code:
clearvariables()
$p="asfsdf\"asfdfdsf"
print($p)
$p = "abc\"de(f$l" + "gh\"ij"
print(length($p))
$p = $p + "af(d\"sfE22 $p(" + $p
print($p)
# array
definearray($array, 10)
$array[0] = "hello"
$array[1] = "\""
$banana = $array[0] + $array[1]
print($banana)
# new line
$popper = "hello\r\nWorld"
print($popper)
FileWrite("c:\temp\rest.txt", $popper)
$line1 = split($popper, "\r", 0)
print($line1)
$line2 = split($popper, "\r", 1)
print($line2)
Secondly, there's a re-write for continuous rotation servos to include speed control. This means your Continuous rotation Movement Panel will be slightly different, now including two speed dials for each wheel.
The mobile interface includes a joystick and servo pad as well, which won't be viewable on your mobile devices until both Android and iOS have been approved by the respective AppStores (1 or 2 days)

- fix Parenthesis in string error. If a string contained something like "Hello(" it would return an error because the parser thought Hello( was to be a function
- latest EZ-Script compiler that supports escaped characters of \" \r \n and fixes a bunch of things like "df()" and "E22"
- servo Pad uses a joystick control in mobile
- new mobile control for Joystick with analog speed adjustment for movement controls that support speed
- speed control for continuous rotation servos and the respective movement panel
- Updated JD, Roli & AdventureBot projects to use latest Mobile Interface Joystick control
- New EZ-Script command: MAP() which will make an input value to a specific range
ARC Downloads
Teams FREE
Free
- Includes a free 3rd party plugin robot skill per project
- Community support
- Free with trial limitations
For schools, personal use & organizations. This edition is updated every 6-12 months.
Recommended
Early Access
Only $8.99/mo
- 2 or more PCs simultaneously
- Includes unlimited skills
- Premium support
- And much more
Experience the latest features and bug fixes weekly. A Pro subscription is required to use this edition.
Runtime FREE
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.
- Teams 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 Teams FREE |
ARC PRO |
---|---|---|
Get ARC for Free | View Plans | |
Usage | Personal DIY Education |
Personal DIY Education Business |
Premium support | $14.99/ticket (optional) |
✓ 1 request/month ($9.99 for additional requests) |
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)
** 1,000 per cognitive type (vision recognition, speech recognition, face detection, sentiment, text recognition, emotion detection)
Upgrade to ARC Pro
Get access to the latest features and updates with ARC Early Access edition. You'll have everything that's needed to unleash your robot's potential!
Analog sticks, and some pretty serious code interface. I am impressed!
Thank you!
The iOS and Android apps have both been submitted for approval. Now we wait... it can take 1-2 days (although we've seen 3-5). At that point, i'll update the apps for JD, Six, Roli, and AdventureBot in the AppStore.
If you have trouble installing it, uninstall the version on your phone and re-install. I had an issue, but it may be related to a problem I am having with my phone that I know I can fix with a factory reset, just delaying it until I have a day to re-install and re-configure all of my apps.
Alan
I really appreciate the change of adding speed sliders to the continuous motion servo panel.
I think making this the default Movement Panel is a great idea for new users of adventure bot
Nice work!
Frank
Thanks for the analog joystick feature on Mobile. Makes driving my Adventure Bot a lot more smooth.
Just to clarify. is it true that this works with the Continuous servo Movement Panel, but NOT the Custom Movement Panel?
Not a complaint, I just want to clarify
Thanks again,
Frank
If you use the custom movement panel, you are responsible to create code for the movements. Your code can (if you wish) use the speed value. It's up to your code if you wish to use the speed values.
You can choose how to incorporate speed control in your code and get the current speed using the available functions..