# Otto
Material regarding my stage with Iralab, designing and realizing a 2 wheeled robot
-The main program is located in [otto_controller_source](https://github.com/iralabdisco/otto/tree/pid_control/otto_controller_source).
+The main program is located in [otto_controller_source](https://github.com/iralabdisco/otto/tree/otto_controller_source).
-You can find various useful tools inside the [utils](https://github.com/iralabdisco/otto/tree/pid_control/utils) folder.
+You can find various useful tools inside the [utils](https://github.com/iralabdisco/otto/tree/utils) folder.
See the [wiki](https://github.com/iralabdisco/otto/wiki) for more info about this projects.
exclusive=False)
def serial_receiver():
- rospy.init_node('serial_receiver', anonymous=True)
+ rospy.init_node('serial_receiver', anonymous=True, log_level=rospy.DEBUG)
serial_port = rospy.get_param("serial_port")
while(ser.is_open == False and not rospy.is_shutdown()):
try:
ser.reset_output_buffer()
def listener():
- rospy.init_node('serial_transmitter', anonymous=True)
+ rospy.init_node('serial_transmitter', anonymous=True, log_level=rospy.DEBUG)
serial_port = rospy.get_param("serial_port")
while(ser.is_open == False and not rospy.is_shutdown()):