I am working on creating a station to control a UR10e robot and a RobotiQ 2F-85 gripper for performing pick-and-place tasks in the real world.
Currently, I can control the gripper to open and close using both the "send program to robot" method (Method A) and the driver (Method B). Specifically, I use the program calls
and
, and these work as expected.
However, when I try to use the program calls
and
to adjust the gripper's speed and force, Method A works well, but Method B fails to change the default low values for speed and force. As a result, the gripper cannot securely hold the item, causing it to fall.
I have attached the station document and the progrobodk.script (saved as .py due to the tpye of attachment limitation), and I will appreciate if anyone can help me.
Currently, I can control the gripper to open and close using both the "send program to robot" method (Method A) and the driver (Method B). Specifically, I use the program calls
Code:
rq_move_and_wait( 0 )
Code:
rq_move_and_wait( 255 )
However, when I try to use the program calls
Code:
rq_set_speed( 255 )
Code:
rq_set_force( 255 )
I have attached the station document and the progrobodk.script (saved as .py due to the tpye of attachment limitation), and I will appreciate if anyone can help me.