Structure to store sensor information.
Synopsis:
typedef struct {
float resolution ;
float range_min ;
float range_max ;
uint32_t delay_min ;
uint32_t delay_max ;
uint32_t delay_default ;
float power ;
}sensor_info_t;
Data:
- float resolution
- Sensor resolution.
- float range_min
- Minimum sensor range.
- float range_max
- Maximum sensor range.
- uint32_t delay_min
- Minimum sensor delay.
- uint32_t delay_max
- Maximum sensor delay.
- uint32_t delay_default
- Sensor delay.
- float power
- Sensor power.
Library:
libsensor (For the qcc command, use the -l sensor option to link against this library)
Description: