Robot Skill To Camera icon Robot Skill To Camera Capture a robot skill's display and stream selected area as video to a configured camera device with FPS and live preview crop. Try it →
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

Become a Synthiam ARC Pro subscriber to unleash the power of easy and powerful robot programming

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