Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.generalrobotics.dev/llms.txt

Use this file to discover all available pages before exploring further.

Sensor

Inherits from: ABC Abstract base class for all sensors. Defines the interface that all sensor implementations must follow. Sensors provide data through the getData() method.

getData

Sensor.getData() -> Any
Get the data from the sensor.
Returns
Any
Any
The sensor data in implementation-specific format
Raises
NotImplementedError
Must be implemented by subclasses