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...
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
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
Unleash your creativity with the power of easy robot programming using Synthiam ARC Pro
That's what I'm talking about! Analog sticks, and some pretty serious code interface. I am impressed!
Thank you!
It works great! I've been playing with Roli and AdventureBot using their new apps that have the new analog joystick. Pretty slick.
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.
Waw, I'm excited to find out about the joysticks. I'll run a few tests during the coming Chrismas holidays, not as many a kabazillion, just a few will be enough I guess.
Android version posted to Google Play this morning.
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
Way to go DJ! Great update.
Both iOS and android mobile apps are available for download - although it can take a few hours or a day to migrate to your country/regional servers
@djsures 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
Okay - mobile software has been updated on respective Android and iOS stores. The projects have been updated and so has this latest ARC. Everything should be in sync if you have updated all devices
just to let you know that the Windows Apps store is still dispensing 2016.10.18.00 but that is OK as that version offers an update to the current version
@DJ Sures 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
It works with any control that has a SPEED parameter.
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..