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
$0 always free
  • 1 third-party plugin skill per project
  • Trial cloud services
  • Personal, DIY & education use
  • Updated every 6–12 months
Recommended

ARC

PRO
$8.99 per month
  • Use on 2+ PCs simultaneously
  • Unlimited robot skills
  • Cloud backup & revision history
  • Weekly features & bug fixes
  • Business use permitted

ARC

RUNTIME
$0 always free
  • Load & run any ARC project
  • Read-only mode
  • Unlimited robot skills
  • Includes early access fixes & features
  • Minimum requirements: Windows 10 or higher, 2 GB RAM, 500 MB free disk space.
  • Recommended: Windows 10 or higher, 8 GB RAM, 1 GB free disk space.
  • Prices are in USD.
  • ARC Free known issues: view here.
  • More about each edition: Download & install guide.
  • Latest changes: Release notes.

Compare Editions

Feature
ARC
FREE
ARC
PRO
Get ARC Free View Plans
Usage Personal · DIY · Education Personal · DIY · Education · Business
Early access to new features & fixes
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 recognition phrases * 10 Unlimited
Camera devices * 1 Unlimited
Vision resolution max 320×240 Unlimited
Interface builder * 2 Unlimited
Cloud project size 128 MB
Cloud project revision history
Create Exosphere requests 50 / month
Exosphere API access Contact Us
Volume license discounts Contact Us
Get ARC 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

Stay on the cutting edge of robotics with ARC Pro, guaranteeing that your robot is always ahead of the game.

Author Avatar
PRO
USA
#1  

Thanks for the upgrade to ARC again.

Author Avatar
PRO
Synthiam
LinkedIn Thingiverse Twitter YouTube GitHub
#2  

You bet, EZAng! Happy holidays!

Author Avatar
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.

Author Avatar
PRO
Canada
Twitter YouTube GitHub
#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.