Operating the Mover gripper using custom software

From Wiki
Revision as of 11:45, 6 February 2018 by Chmeyer (talk | contribs) (Created page with "This page provides information on how to operate the Mover gripper with a custom robot control via the CAN bus. The gripper in the Mover robots is operated using two digital...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page provides information on how to operate the Mover gripper with a custom robot control via the CAN bus.

The gripper in the Mover robots is operated using two digital outputs of the joint4 module:

  • Enable: Module 4 (CAN ID 0x40), second bit
  • Open: Module 4 (CAN ID 0x40), first bit

The Enable bit has to be set to operate the gripper. The Open bit opens and closes the gripper.

The digital output bits are encoded in the cyclic position control messages, please have a look at the protocol description: CAN Protocol

For a Mover6 with the CPR-CANV2 protocol the according CAN messages might look like:

  • Open Gripper: Message to CAN ID 0x40 with Data: 0x14 0x04 0x00 0x00 0x83 0xF1 0x51 0x03

The last bit is the digital out bit, outputs 0 and 1 are high now.

  • Close Gripper: Message to CAN ID 0x40 with Data: 0x14 0x04 0x00 0x00 0x83 0xF1 0x51 0x02

Now only the enable bit is high, the open bit is low.