RobotState descriptor gives you access to sensor data—camera images, odometry, maps, and more. Declared state is automatically updated at 50Hz while your skill runs.
Declaration
Declare state dependencies as class attributes:None on first access.
Available State
| State | Type Enum | Description |
|---|---|---|
| Camera Image | RobotStateType.LAST_MAIN_CAMERA_IMAGE_B64 | Latest frame (base64 JPEG). |
| Odometry | RobotStateType.LAST_ODOM | Position, orientation, and velocity. |
| Map | RobotStateType.LAST_MAP | Occupancy grid. |
| Head Position | RobotStateType.LAST_HEAD_POSITION | Head tilt angle. |

