Forum Migration Notice
We're transitioning to a more modern community platform by the end of this year. Learn about the upcoming changes and what to expect.

Smart componnets. Is it possible to attach whole queue to robot gripper using attacher?

Audrius
Audrius
edited July 2024 in RobotStudio
I need to attach group of 3 to 5 items to robot gripper, can I use queue for this or i must attach them with different attachers one by one? Items is dynamically created. Maybe there is example how to do this?
Post edited by Johannes Weiman on

Answers

  • Hi...

    There is the possibility of joining a queue. With each iteration you fill and empty the queue.

    You can use two queues and set up the logic of including 3 in queue_1 and 5 in queue_1, after attaching to the robot, move queue_1 to the position, meanwhile fill queue_2, in the detach position execute the Clear() command from queue_1, like this Drop all items from the queue. Move to the attach position and detach queue_1, attach queue_2, and so on.

    I think it can help. Test and post the result.