PDA-Update
sfeakes 2024-05-09 16:07:20 -05:00
parent d042fd481a
commit 868cb8b790
2 changed files with 5 additions and 1 deletions

View File

@ -83,11 +83,15 @@ Designed to mimic AqualinkRS devices, used to fully configure the master control
* Add set time to OneTouch protocol. * Add set time to OneTouch protocol.
* Update AqualinkD Management console to manage configuration * Update AqualinkD Management console to manage configuration
* Create iAqualink Touch Simulator * Create iAqualink Touch Simulator
* Probably decoded enough protocols for AuqlinkD to self configure.
# Update in Release 2.3.5 # Update in Release 2.3.5
* NEED TO FIX * NEED TO FIX
* Not saying programming mode * Not saying programming mode
* Not always doing on/off * Not always doing on/off
* Heaters are slow to turn on, need to hit extra button
* Spa turns on Spa Heat (first button on home page ???)
* SWG Stays on
* serial_logger * serial_logger
* Add wiki documentation * Add wiki documentation
* about Heat vs Heater * about Heat vs Heater

View File

@ -681,7 +681,7 @@ void _aq_programmer(program_type r_type, char *args, struct aqualinkdata *aq_dat
else if (r_type == AQ_SET_SPA_HEATER_TEMP) else if (r_type == AQ_SET_SPA_HEATER_TEMP)
type = AQ_SET_RSSADAPTER_SPA_HEATER_TEMP; type = AQ_SET_RSSADAPTER_SPA_HEATER_TEMP;
} else if (r_type == AQ_SET_PUMP_RPM) { } else if (r_type == AQ_SET_PUMP_RPM) {
if (isONET_ENABLED) if (isONET_ENABLED || isPDA_IAQT)
type = AQ_SET_ONETOUCH_PUMP_RPM; type = AQ_SET_ONETOUCH_PUMP_RPM;
else if (isIAQT_ENABLED) else if (isIAQT_ENABLED)
type = AQ_SET_IAQTOUCH_PUMP_RPM; type = AQ_SET_IAQTOUCH_PUMP_RPM;