Go to the documentation of this file.00001
00012
00013
00014
00015
00016 #ifndef KOBUKI_PAYLOAD_HEADERS_HPP_
00017 #define KOBUKI_PAYLOAD_HEADERS_HPP_
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 namespace kobuki {
00028
00029 class Header {
00030 public:
00031 enum PayloadType {
00032
00033 CoreSensors = 1, DockInfraRed = 3, Inertia = 4, Cliff = 5, Current = 6,
00034
00035
00036 Hardware = 10, Firmware = 11, ThreeAxisGyro = 13, Eeprom = 15, GpInput = 16,
00037
00038 UniqueDeviceID = 19, Reserved = 20, ControllerInfo = 21
00039 };
00040 };
00041
00042 }
00043
00044 #endif