|
@@ -23,11 +23,12 @@ class ArduinoROS():
|
|
|
|
|
|
# Cleanup when termniating the node
|
|
|
rospy.on_shutdown(self.shutdown)
|
|
|
-
|
|
|
+
|
|
|
self.is_use_serial = rospy.get_param("~is_use_serial", True)
|
|
|
|
|
|
self.serial_port = rospy.get_param("~serial_port", "/dev/ttyACM0")
|
|
|
self.serial_baud = int(rospy.get_param("~serial_baud", 57600))
|
|
|
+ self.i2c_smbus_num = rospy.get_param("~i2c_smbus_num", 1)
|
|
|
self.i2c_slave_addr = rospy.get_param("~i2c_slave_addr", 8)
|
|
|
self.timeout = rospy.get_param("~timeout", 0.7)
|
|
|
self.base_frame = rospy.get_param("~base_frame", 'base_footprint')
|
|
@@ -76,7 +77,7 @@ class ArduinoROS():
|
|
|
rospy.Service('~light_show', LightShow, self.LightShowHandler)
|
|
|
|
|
|
# Initialize the controlller
|
|
|
- self.controller = Arduino(self.is_use_serial, self.serial_port, self.serial_baud, self.i2c_slave_addr, self.timeout)
|
|
|
+ self.controller = Arduino(self.is_use_serial, self.serial_port, self.serial_baud, self.i2c_smbus_num, self.i2c_slave_addr, self.timeout)
|
|
|
|
|
|
# Make the connection
|
|
|
self.controller.connect()
|