mirror of https://github.com/sfeakes/AqualinkD.git
Small update
parent
4b068ca643
commit
fa4e606da5
|
@ -62,6 +62,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.4
|
||||
* Small fix for Freeze Protect.
|
||||
## Update in Release 1.2.3
|
||||
* Fix for setpoints on "Pool Only" configurations.
|
||||
## Update in Release 1.2.2
|
||||
|
|
|
@ -1160,7 +1160,7 @@ void *get_freeze_protect_temp( void *ptr )
|
|||
return ptr;
|
||||
}
|
||||
|
||||
waitForMessage(aq_data, "FREEZE PROTECTION IS SET TO", 3);
|
||||
waitForMessage(aq_data, "FREEZE PROTECTION IS SET TO", 6); // Changed from 3 to wait for multiple items to be listed
|
||||
//cancel_menu(aq_data);
|
||||
cleanAndTerminateThread(threadCtrl);
|
||||
|
||||
|
|
|
@ -315,7 +315,7 @@ void mqtt_broadcast_aqualinkstate(struct mg_connection *nc)
|
|||
if (_aqualink_data->spa_temp == TEMP_UNKNOWN && _aqualink_config->report_zero_spa_temp) {
|
||||
_last_mqtt_aqualinkdata.spa_temp = TEMP_UNKNOWN;
|
||||
send_mqtt_temp_msg(nc, SPA_TEMP_TOPIC, (_aqualink_config->convert_mqtt_temp?-18:0));
|
||||
} else {
|
||||
} else if (_aqualink_data->spa_temp != TEMP_UNKNOWN) {
|
||||
_last_mqtt_aqualinkdata.spa_temp = _aqualink_data->spa_temp;
|
||||
send_mqtt_temp_msg(nc, SPA_TEMP_TOPIC, _aqualink_data->spa_temp);
|
||||
send_domoticz_mqtt_temp_msg(nc, _aqualink_config->dzidx_spa_water_temp, _aqualink_data->spa_temp);
|
||||
|
|
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
|
||||
|
||||
#define AQUALINKD_NAME "Aqualink Daemon"
|
||||
#define AQUALINKD_VERSION "1.2.3"
|
||||
#define AQUALINKD_VERSION "1.2.4"
|
||||
|
|
|
@ -84,4 +84,7 @@
|
|||
// var tile_background = "#646464";
|
||||
// var tile_text = "#B9B9B9";
|
||||
// var tile_status_text = "#B2B2B2";
|
||||
// var head_background = "#000D53";
|
||||
// var head_background = "#000D53";
|
||||
|
||||
// REMOVE THIS.
|
||||
//document.writeln("<script type='text/javascript' src='extra/extra.js'></script>");
|
Loading…
Reference in New Issue