-
Notifications
You must be signed in to change notification settings - Fork 40
Description
The current version of the 'create' robot has some basic changes.
The following change seems to make it nominally functional.
https://github.com/turtlebot/turtlebot_create/blob/indigo/create_node/src/create_node/robot_types.py
ROBOT_TYPES = {
'create': RobotType('create', 57600, create_sensor_handler.CreateSensorHandler,
wheel_separation=0.26),
'create2': RobotType('create', 115200, create_sensor_handler.CreateSensorHandler,
wheel_separation=0.26),
'roomba': RobotType('roomba', 115200, roomba_sensor_handler.RoombaSensorHandler,
wheel_separation=0.235),
}
There are also a number of new commands.
see http://www.irobot.com/~/media/MainSite/PDFs/About/STEM/Create/create_2_Open_Interface_Spec.pdf
I may be able to work on adding the new functionality in a branch if that would help.