Add VSP (variable speed pump) support for iAqua systems#124
Open
CZyMfnIPC wants to merge 1 commit intoflz:masterfrom
Open
Add VSP (variable speed pump) support for iAqua systems#124CZyMfnIPC wants to merge 1 commit intoflz:masterfrom
CZyMfnIPC wants to merge 1 commit intoflz:masterfrom
Conversation
Add IaquaPump device class with speed preset read/write via undocumented iAquaLink session API commands (get_vsp_speedauxinfo, enable_disable_pump_speedId). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
IaquaPumpdevice class (extendsIaquaSwitch) with speed preset read/write support_pumpdevice names toIaquaPumpinfrom_data()(backwards-compatible — on/off still works)get_vsp_speed()andset_vsp_speed()methods toIaquaSystemget_vsp_speedauxinfoandenable_disable_pump_speedIdDetails
The iAquaLink cloud API exposes VSP pump speed data through undocumented session commands (discovered by reverse-engineering the Android APK). This PR adds support for:
IaquaPump.fetch_speed(slot_id)callsget_vsp_speedauxinfoand populatesspeed(RPM),speed_id(active preset 1-8), andspeed_presets(all 8 presets with names/RPM values)IaquaPump.set_speed(speed_id, slot_id)callsenable_disable_pump_speedIdwithon_off_action=onto activate a presetTested on a live system: Jandy ePump on AquaLink RS-4 (iAqua system type), successfully switched between speed presets.
Test plan
_pumpdevices now createIaquaPumpinstead ofIaquaSwitchIaquaPumpinherits allIaquaSwitchbehavior (turn_on/turn_off via toggle)🤖 Generated with Claude Code