(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 release includes a few new EZ-Script commands for file operations and GUI enhancements.
- EZ-Script Edit Window now saves the size of the window you resize to
- Examples Menu has easier to read buttons
- New EZ-Script File Operations (FileReadClose, FileReadReset, FileExists, FileReadEnd, FileReadChar, FileReadLine, FileReadAll)
- New EZ-Script function for splitting string into fields - Split()
- Speech Recognition Control includes Audio Level Graph
The File Operations Example Project will demonstrate how to perform EZ-Script File Operations for Reading, Writing and Parsing. Choose Examples and select the File Operations project.
File Operation Example Project

New Speech Recognition Control with Audio Level

File Write Example
File Read Example
File Read with Splitting Fields By Coma Seperator Using SPLIT() Function
SPLIT() Example #1
SPLIT() Example #2
- EZ-Script Edit Window now saves the size of the window you resize to
- Examples Menu has easier to read buttons
- New EZ-Script File Operations (FileReadClose, FileReadReset, FileExists, FileReadEnd, FileReadChar, FileReadLine, FileReadAll)
- New EZ-Script function for splitting string into fields - Split()
- Speech Recognition Control includes Audio Level Graph
The File Operations Example Project will demonstrate how to perform EZ-Script File Operations for Reading, Writing and Parsing. Choose Examples and select the File Operations project.
File Operation Example Project

New Speech Recognition Control with Audio Level

File Write Example
Code:
# This EZ-Script will log the positions of
# servos D3 and D4 in the specified file.
# The loop will repeat 10 times for 10 seconds
$filename = "c:\temp\myfile.txt"
FileDelete($filename)
$cnt = 0
$max = 10
:START
print("Writing line $cnt or $max")
FileWrite($filename, "Time: $time")
FileWrite($filename, ", Left Servo: GetServo(d3)")
FileWriteLine($filename, ", Right Servo: GetServo(d4)")
$cnt = $cnt + 1
if ($cnt = $max)
halt()
sleep(1000)
goto(START)
File Read Example
Code:
$filename = "c:\temp\myfile.txt"
if (FileExists($filename) = false)
print("File does not exist")
Halt()
Endif
FileReadReset($filename)
:START
$txt = FileReadLine($filename)
print("Read: $txt")
if (FileReadEnd($filename) = true)
print("End Of File")
halt()
endif
goto(START)
File Read with Splitting Fields By Coma Seperator Using SPLIT() Function
Code:
# Reads a file and seperates each field by a comma.
# The Split() function will return a
# specified field index
$filename = "c:\temp\myfile.txt"
if (FileExists($filename) = false)
print("File does not exist")
Halt()
Endif
FileReadReset($filename)
$cnt = 1
:START
$txt = FileReadLine($filename)
$DateField = Split($txt, ",", 0)
$LeftArmField = Split($txt, ",", 1)
$RightArmField = Split($txt, ",", 2)
print("Row: $cnt")
print("Date: $DateField")
print("Left Arm: $LeftArmField")
print("Right Arm: $RightArmField")
print()
if (FileReadEnd($filename) = true)
print("End Of File")
halt()
endif
$cnt = $cnt + 1
goto(START)
SPLIT() Example #1
Code:
$x="one, two, three"
$first=split($x, ",", 0)
$second=split($x, ",", 1)
print("First Field is: $first")
print("Second Field is: $second")
SPLIT() Example #2
Code:
$x="one - two - three"
$first=split($x, "-", 0)
$second=split($x, "-", 1)
print("First Field is: $first")
print("Second Field is: $second")
ARC Downloads
Teams FREE
Free
- Includes 1 free plugin robot skill per project
- Community support
- Free with trial limitations
For schools, personal use & organizations. This edition is updated every 6-9 months.
Recommended
Early Access
As Low as $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.
- 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
ARC Early Access will give you immediate updates and new features needed to unleash your robot's potential!
:-)
very appeciative ,Glen(FRED'S master)
GREAT JOB DJ
i see this board EZB needs a lot and a lot of programming in scripts
To give you an idea, there are many thousand users of the EZB, and we only have a few ppl who ask questions on the forum :). The rest just use it, or learn from watching some of these questions. Everything you have ever asked is possible and easy within ARC, but you'll need to actually use it first lol
That is the reason our forum rules strictly limit posts to helpful EZ-Robot building information. We receive thousands of unique visitors viewing the forum daily, and they are mostly existing users. The forum is a knowledge of community support to help others and define new feature suggestions. There are many thousand existing forums online that will provide you're daily dose of drama - just not here