ARC 2023.12.25.00 (Pro & Runtime)

(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

We are pleased to announce the special holiday release of ARC version 2023.12.25.00. This update introduces new features and enhancements to improve your experience with the ARC framework. Here's what's new:

New Default Variables

  • $IsSpeaking: This variable is now set to true or false depending on whether the ARC internal speech synthesis framework is currently speaking.
  • $SpeakingText: This variable holds the text being spoken using the ARC internal speech synthesis framework.

Enhanced Speech Synthesis

  • SSML Script Commands: We've added new SSML script commands to our built-in Say() and SayEZB() functions and other variants. The new commands are saySSML(), saySSMLEZB(), saySSMLWait(), and saySSMLEZBWait(). With SSML (Speech Synthesis Markup Language), you can customize speech duration, pitch, voices, and more on the fly. Learn more about SSML here.

Error Handling and Compatibility

  • Haarcascade Files Loading Error: We've addressed an error related to loading haarcascade files that are not in the OpenCV v1 format. Although haar detection technology has somewhat been deprecated, we recognize the lack of worldwide support for this older image detection method and have made improvements to enhance compatibility and error reporting.

Thank you for choosing ARC. We hope you enjoy these updates and look forward to your feedback!


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

Join the ARC Pro community and gain access to a wealth of resources and support, ensuring your robot's success.

PRO
USA
#1  

Thanks for the upgrade to ARC again.

PRO
Synthiam
#2  

You bet, EZAng! Happy holidays!

PRO
USA
#3   — Edited

Thank you-

Do you have an example on using the new default variables $IsSpeaking and $SpeakingText?

New Default Variables $IsSpeaking: This variable is now set to true or false depending on whether the ARC internal speech synthesis framework is currently speaking. $SpeakingText: This variable holds the text being spoken using the ARC internal speech synthesis framework.

PRO
Canada
#4  

Certainly! The new default variables $IsSpeaking and $SpeakingText can be used in various ways to enhance your robot's interactivity and responsiveness during speech synthesis. Here's an example of how you can use these variables in an EZ-Script:

# This script demonstrates how to use the $IsSpeaking and $SpeakingText variables

# Let's start by making the robot say something
Say("Hello, I am your friendly robot.")

# Now, we can check if the robot is speaking and what it is saying
if($IsSpeaking)
  print("The robot is currently speaking.")
  print("Speaking Text: " + $SpeakingText)
else
  print("The robot is not speaking right now.")
endif

# We can also create a loop that waits for the robot to finish speaking
:WaitForSpeechToEnd
if($IsSpeaking)
  Sleep(100) # Wait for 100 milliseconds before checking again
  goto(WaitForSpeechToEnd)
endif

print("The robot has finished speaking.")

In this script:

  • The Say() command is used to make the robot speak a predefined phrase.
  • The $IsSpeaking variable is checked to determine if the robot is currently speaking.
  • The $SpeakingText variable is used to retrieve and print the text that the robot is speaking.
  • A loop is created with a label :WaitForSpeechToEnd that continuously checks if the robot is still speaking. It uses the Sleep() command to pause briefly between checks.
  • Once the robot finishes speaking, the loop exits, and a message is printed to indicate that the speech has ended.

This example can be adapted and expanded upon to create more complex interactions, such as triggering actions or animations in sync with the speech or responding to user input during or after speech synthesis.


I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.