pull/42/head
shaun feakes 2018-09-23 07:42:38 -05:00
parent 80d4dcc24b
commit 5f36f9fed3
3 changed files with 9 additions and 3 deletions

View File

@ -877,7 +877,10 @@ void *set_aqualink_pool_heater_temps( void *ptr )
// Before going to numeric field.
waitForMessage(threadCtrl->aq_data, "MUST BE SET", 5);
send_cmd(KEY_LEFT, aq_data);
waitForMessage(threadCtrl->aq_data, name, 5);
while (stristr(aq_data->last_message, "MUST BE SET") != NULL) {
delay(500);
}
//waitForMessage(threadCtrl->aq_data, name, 5);
//waitForMessage(threadCtrl->aq_data, name, 3);
}
@ -943,7 +946,10 @@ void *set_aqualink_spa_heater_temps( void *ptr )
// Before going to numeric field.
waitForMessage(threadCtrl->aq_data, "MUST BE SET", 5);
send_cmd(KEY_LEFT, aq_data);
waitForMessage(threadCtrl->aq_data, name, 5);
while (stristr(aq_data->last_message, "MUST BE SET") != NULL) {
delay(500);
}
//waitForMessage(threadCtrl->aq_data, name, 5);
//waitForMessage(threadCtrl->aq_data, name, 3);
}

Binary file not shown.

View File

@ -1,4 +1,4 @@
#define AQUALINKD_NAME "Aqualink Daemon"
#define AQUALINKD_VERSION "1.2.2c"
#define AQUALINKD_VERSION "1.2.2d"