Asked — Edited
Resolved Resolved by DJ Sures!

Tracking / Personality Generator

I'm just starting out with tracking. I have the face tracking working pretty well but when I turn on my personality generator, a very simple movement and speech script, it interferes with the tracking. Is there a way to pause the personality generator when other functions are running? Then lasts say is the robot is idle for 2 minutes it can start up again.

thanks for the help as always.

-Steve


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.

PRO
Synthiam
#1  

You can pause the control using the CheatSheet and viewing the ControlCommand()

Here is information about the Cheat Sheet from the learn section tutorial: https://synthiam.com/Tutorials/Lesson/23?courseId=6

Find more activities specific to programming in the activities course: https://synthiam.com/Tutorials/Course/6

The syntax to pause the personality generator, for example would be...


# pause the personality generator as seen in the Cheat Sheet
ControlCommand("Personality Generator", PauseOn)


# stop pausing the personality generator as seen in the Cheat Sheet
ControlCommand("Personality Generator", PauseOff)

#2  

Thanks! That worked - cheatsheet is great.