Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
- Remove `SensorMetricSample` in favour of using `MetricSample` for sensors.
- Remove `SensorMetric` enum, since it was unused and redundant.
- Renamed `MetricSample.source` to `MetricSample.connection` to make it more specific as to what it refers to.
- Rename `SensorStateCode.SENSOR_STATE_CODE_ON` to `SensorStateCode.SENSOR_STATE_CODE_OK`, to better indicate that we do not control on/off state of sensors.

## Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ enum SensorStateCode {
SENSOR_STATE_CODE_UNSPECIFIED = 0;

// The sensor is up and running.
SENSOR_STATE_CODE_ON = 1;
SENSOR_STATE_CODE_OK = 1;

// The sensor is in an error state.
SENSOR_STATE_CODE_ERROR = 2;
Expand Down
Loading