File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.3.1]
11+
12+ ### Fixed
13+ - sensorName was undefined but used in logging.
14+
1015## [ 0.3.0]
1116
1217### Added
Original file line number Diff line number Diff line change 11name =Sensirion UPT I2C Auto Detection
2- version =0.3.0
2+ version =0.3.1
33author =Jonas Stolle, Maximilian Paulsen
44maintainer =Sensirion AG <sensirion.com>
55sentence =Automatically detects Sensirion Sensors on an I2C bus and reads out measurement data.
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ void SensorManager::executeSensorCommunication() {
1212 SensorStateMachine* ssm = mSensorList .getSensorStateMachine (i);
1313 if (ssm) {
1414 const AutoDetectorError error = ssm->update ();
15+ const char * sensorName =
16+ sensorLabel (ssm->getSensor ()->getSensorType ());
1517 switch (error) {
1618 case I2C_ERROR:
1719 ESP_LOGW (TAG,
You can’t perform that action at this time.
0 commit comments