|
@@ -64,6 +64,9 @@ class ArduinoROS():
|
|
|
# A service to set light show
|
|
|
rospy.Service('~light_show', LightShow, self.LightShowHandler)
|
|
|
|
|
|
+ # A service to position PWM servo
|
|
|
+ rospy.Service('~gripper_control', GripperControl, self.GripperControlHandler)
|
|
|
+
|
|
|
# Initialize the controlller
|
|
|
self.controller = Arduino(self.is_use_serial, self.serial_port, self.serial_baud, self.i2c_smbus_num, self.i2c_slave_addr, self.timeout)
|
|
|
|
|
@@ -147,6 +150,10 @@ class ArduinoROS():
|
|
|
self.controller.light_show(req.value)
|
|
|
return LightShowResponse()
|
|
|
|
|
|
+ def GripperControlHandler(self, req):
|
|
|
+ self.controller.gripper_control(req.value)
|
|
|
+ return GripperControlResponse()
|
|
|
+
|
|
|
# Stop the robot
|
|
|
def shutdown(self):
|
|
|
rospy.logwarn("Shutting down Arduino Node...")
|