diff --git a/CHANGELOG.md b/CHANGELOG.md index c1223e961..8be3b269e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file. ### Changed - SerialBridge command ``SSerialSend9`` replaced by ``SSerialMode`` +- NeoPool using temperature as only frequently changing value for NPTeleperiod ### Fixed diff --git a/tasmota/tasmota_xsns_sensor/xsns_83_neopool.ino b/tasmota/tasmota_xsns_sensor/xsns_83_neopool.ino index 88e1d00f3..01718d201 100644 --- a/tasmota/tasmota_xsns_sensor/xsns_83_neopool.ino +++ b/tasmota/tasmota_xsns_sensor/xsns_83_neopool.ino @@ -632,15 +632,15 @@ const uint16_t NeoPoolRegCheck[] PROGMEM = { // MBF_CELL_RUNTIME_POL_CHANGES_HIGH, // measured values delayed (set bit 15 to indicate often value changes) - MBF_ION_CURRENT | 0x8000, - MBF_MEASURE_CL | 0x8000, - MBF_MEASURE_CONDUCTIVITY | 0x8000, - MBF_MEASURE_PH | 0x8000, - MBF_MEASURE_RX | 0x8000, MBF_MEASURE_TEMPERATURE | 0x8000, - MBF_HIDRO_CURRENT | 0x8000, // undelayed measured values + MBF_MEASURE_CL, + MBF_MEASURE_CONDUCTIVITY, + MBF_MEASURE_PH, + MBF_MEASURE_RX, + MBF_ION_CURRENT, + MBF_HIDRO_CURRENT, MBF_HIDRO_STATUS, MBF_PH_STATUS, MBF_RELAY_STATE,