mirror of https://github.com/arendst/Tasmota.git
Fix NeoPool filtration mode display (#19801)
This commit is contained in:
parent
e3253fea8f
commit
1f8cd6a259
|
@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Prepare I2C drivers for bus2 support
|
||||
|
||||
### Fixed
|
||||
- NeoPool filtration mode display
|
||||
- ESP32 I2C allow bus2 support when bus1 is not enabled
|
||||
|
||||
### Removed
|
||||
|
|
|
@ -1885,7 +1885,7 @@ void NeoPoolShow(bool json)
|
|||
}
|
||||
|
||||
// Filtration mode
|
||||
GetTextIndexed(stemp, sizeof(stemp), NeoPoolGetData(MBF_PAR_FILT_MODE) < MBV_PAR_FILT_INTELLIGENT ? NeoPoolGetData(MBF_PAR_FILT_MODE) : nitems(kNeoPoolFiltrationMode)-1, kNeoPoolFiltrationMode);
|
||||
GetTextIndexed(stemp, sizeof(stemp), NeoPoolGetData(MBF_PAR_FILT_MODE) <= MBV_PAR_FILT_INTELLIGENT ? NeoPoolGetData(MBF_PAR_FILT_MODE) : nitems(kNeoPoolFiltrationMode)-1, kNeoPoolFiltrationMode);
|
||||
WSContentSend_PD(HTTP_SNS_NEOPOOL_FILT_MODE, neopool_type, stemp);
|
||||
|
||||
// Relays
|
||||
|
|
Loading…
Reference in New Issue