Browse Source

sns: fix order of values

pull/2525/head
Maxim Prokhorov 2 years ago
parent
commit
53b0f452a0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/sensor.cpp

+ 1
- 1
code/espurna/sensor.cpp View File

@ -3745,8 +3745,8 @@ void sensorLoop() {
DEBUG_MSG_P(PSTR("[SENSOR] %s -> raw %s processed %s filtered %s\n"),
_magnitudeTopic(magnitude.type).c_str(),
withUnits(value.processed, magnitude.units).c_str(),
withUnits(value.raw, magnitude.sensor->units(magnitude.slot)).c_str(),
withUnits(value.processed, magnitude.units).c_str(),
withUnits(value.filtered, magnitude.units).c_str());
}
#endif


Loading…
Cancel
Save