mirror of https://github.com/sfeakes/AqualinkD.git
Update
parent
98d6cc5fd2
commit
0bf72d3f5f
|
@ -67,6 +67,8 @@ Designed to mimic AqualinkRS6 All Button keypad, and just like the keypad you ca
|
|||
* http://aqualink.ip/simple.html <- (Anothr opion if you don't like the above)
|
||||
* http://aqualink.ip/simulator.html <- (RS8 All Button Control Panel simulator)
|
||||
#<a name="release"></a>
|
||||
## Update in Release 1.2.5
|
||||
* fix bug for MQTT freeze protect.
|
||||
## Update in Release 1.2.4
|
||||
* Small fix for Freeze Protect.
|
||||
## Update in Release 1.2.3
|
||||
|
|
|
@ -347,6 +347,11 @@ void mqtt_broadcast_aqualinkstate(struct mg_connection *nc)
|
|||
send_mqtt_string_msg(nc, FREEZE_PROTECT_ENABELED, MQTT_OFF);*/
|
||||
}
|
||||
|
||||
if (_aqualink_data->frz_protect_state != _last_mqtt_aqualinkdata.frz_protect_state) {
|
||||
_last_mqtt_aqualinkdata.frz_protect_state = _aqualink_data->frz_protect_state;
|
||||
send_mqtt_string_msg(nc, FREEZE_PROTECT, _aqualink_data->frz_protect_state==ON?MQTT_ON:MQTT_OFF);
|
||||
}
|
||||
|
||||
if (_aqualink_data->ar_swg_status == SWG_STATUS_ON) { // If the SWG is actually on
|
||||
if (_aqualink_data->swg_percent != TEMP_UNKNOWN && (force_update || _aqualink_data->swg_percent != _last_mqtt_aqualinkdata.swg_percent)) {
|
||||
_last_mqtt_aqualinkdata.swg_percent = _aqualink_data->swg_percent;
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue