Windows Release 2016.01.30.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

  • MPU9150 (All-In-One) sensor update

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!

#1  

wooHoo! Compass and temperature both working. compass still a little jumpy, but hovers right around the actual direction it is pointing. I can definitely make this work.

Now I need to start working on how to script 45 and 90 degree turns. Easy except where I cross the 360/0 boundary. Calculating the heading is easy, but measuring that I have reached it I need to think about a bit.

Alan

#2  

This may help @Alan... I wrote it years ago for a robot that followed a GPS to a waypoint... Maybe it might help you? Or not LOL:) I cleaned it up for ARC but it may be of no use with the compass. Maybe you can adapt it somehow?...


# $wp1 = desired heading
# $tr1 = current heading
# twp = number of degrees to rotate

$wp1 = 90
$tr1 = $CompassHeading

repeatUntil($wp1 = $tr1)
$tr1 = $CompassHeading #update the compass
IF($wp1 < $tr1)     #calculate the shortest direction of turn to waypoint bearing
$twp=360-$tr1+$wp1
ELSE
$twp=$wp1-$tr1
ENDIF

IF($twp <= 180)              # 'move right
right() # more code may be needed here
ELSE                           # 'move left
left() # more code may be needed here
ENDIF
sleep(100)
endrepeatuntil

#3  

Thanks @Richard. This is very similar to what I was thinking of doing, but has triggered some additional ideas.

Alan

#4  

Hi Richard, This is similar to my need also. Thanks for posting it.

Hi Alan, I am interested in seeing your ideas also, once developed.

Ron R

#5  

Hello All,

I purchased an mpu9150 on line and it appears to be working per the lattest tutorial, etc. I have an adventure bot and not sure how to mount and calibrate it on the robot? I have included a photo of how I have it mounted and was wondering if this will work for proper compass readings. Also I watched video on how to calibrate an iphone compass but not sure how this relates to my adventure bot and where the sensor board is located. Maybe someone with an adventure bot or other robot with this sensor board may have some ideas or a video?

User-inserted image

Thanks much ! Rick:):):)

#6  

That is a good location for it. I had mounted mine on the front, above the wheel servos, and the motors generate enough magnetic interference that it is not as accurate as it could be. I think I'll try moving to the back like this as well.

To calibrate, you do it just like an iPhone or Android phone. With the compass control active, pick up the robot and move in a figure-eight pattern. (this is going to be tricky when I mount on my robot dog that is going to weigh ~90 lbs. I may need a different solution by the time I get it built...).

Alan

#7  

Hello Alan,

Thanks for the reply ! I've searched on you tube and have found several methods to calibrate the iphone compass.

With the compass in the location it is at how do I initially hold it when starting the calibration? Does it need to be held flat with the sensor board to the right and would north be zero degrees once it is calibrated properly? Thanks much Alan ! Rick :):):)

#8  

It doesn't matter how you hold it to start. It is the figure 8 movement that matters.

Yes, 0 degrees will be north when you are done.

Alan