From 868cb8b790bb37f139fe1cef67684b249e3fe02d Mon Sep 17 00:00:00 2001 From: sfeakes Date: Thu, 9 May 2024 16:07:20 -0500 Subject: [PATCH] update --- README.md | 4 ++++ aq_programmer.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c215372..d8363d9 100644 --- a/README.md +++ b/README.md @@ -83,11 +83,15 @@ Designed to mimic AqualinkRS devices, used to fully configure the master control * Add set time to OneTouch protocol. * Update AqualinkD Management console to manage configuration * Create iAqualink Touch Simulator +* Probably decoded enough protocols for AuqlinkD to self configure. # Update in Release 2.3.5 * NEED TO FIX * Not saying programming mode * 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 * Add wiki documentation * about Heat vs Heater diff --git a/aq_programmer.c b/aq_programmer.c index 80135e8..191dcab 100644 --- a/aq_programmer.c +++ b/aq_programmer.c @@ -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) type = AQ_SET_RSSADAPTER_SPA_HEATER_TEMP; } else if (r_type == AQ_SET_PUMP_RPM) { - if (isONET_ENABLED) + if (isONET_ENABLED || isPDA_IAQT) type = AQ_SET_ONETOUCH_PUMP_RPM; else if (isIAQT_ENABLED) type = AQ_SET_IAQTOUCH_PUMP_RPM;