Structure representing a sensor measurement with type, values, and timestamp. More...
Public Member Functions | |
| SensorMeasurement (this.type, this.values, this.time) | |
| Default constructor. | |
Public Attributes | |
| SensorType | type |
| Type of the sensor. | |
| Vector3d | values |
| 3D vector containing sensor measurement values | |
| int | time |
| Timestamp of the measurement in milliseconds. | |
Structure representing a sensor measurement with type, values, and timestamp.
Referenced from MeasurementListener.
Definition at line 20 of file sensor_measurement.dart.
| SensorMeasurement.SensorMeasurement | ( | this. | type, |
| this. | values, | ||
| this. | time ) |
Default constructor.
| int SensorMeasurement.time |
Timestamp of the measurement in milliseconds.
Dart code snippet:
Definition at line 52 of file sensor_measurement.dart.
| SensorType SensorMeasurement.type |
Type of the sensor.
Dart code snippet:
Definition at line 32 of file sensor_measurement.dart.
| Vector3d SensorMeasurement.values |
3D vector containing sensor measurement values
Dart code snippet:
Definition at line 42 of file sensor_measurement.dart.