Fixed some indentation in arduino_node.py

This commit is contained in:
Patrick Goebel 2015-11-22 17:15:11 -08:00
parent b7f922f7e7
commit c958e590cc

View File

@ -77,10 +77,10 @@ class ArduinoROS():
# A service to turn a digital sensor on or off
rospy.Service('~digital_write', DigitalWrite, self.DigitalWriteHandler)
# A service to set pwm values for the pins
rospy.Service('~analog_write', AnalogWrite, self.AnalogWriteHandler)
# A service to set pwm values for the pins
rospy.Service('~analog_write', AnalogWrite, self.AnalogWriteHandler)
# Initialize the controlller
# Initialize the controlller
self.controller = Arduino(self.port, self.baud, self.timeout)
# Make the connection