npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

homebridge-aqua-connect-lite

v1.2.1

Published

Basic Control of your pool using Aqua Connect. Currently only supports the Light, Aux1, and Aux2.

Downloads

82

Readme

homebridge-aqua-connect-lite

Control your Hayward pool equipment with Aqua Connect Home Network via Homebridge!

I spent some time analyzing the Aqua Connect Home Network Device web app and determined that I could expose some basic funtionality to Homebridge. This is my first Homebridge plugin. While it has been working great for my setup, I cannot guarentee it will work for yours.

My pool hardware setup is a Hayward E-Command 4, Pro Logic P4, and an Aqua Connect Home Network Device.

The next iteration will add support for the pool and air temperatures. Controlling the filter is also on the road map, eventually. I do not have a spa or heater, so there is no plan to add support for those since I can not test them.

Also, there is no plan to expose navigating the menu's to change settings on the controller. I just want to be able to turn on/off my pool light with my landscape lights and control my water feature via Homebridge :-).

This plugin requires Homebridge

Ensure you have Homebridge installed and running before trying to use this plugin. Refer to the Homebridge wiki for setup instructions.

Steps to Install Plugin

With Homebridge UI

Search Plugins for

Aqua Connect Lite

And click "INSTALL"

Without Homebridge UI via NPM

npm install homebridge-aqua-connect-lite

How to configure the plugin

With Homebridge UI

The only required configuration needed is adding your Aqua Connect Home Network device's ip address in the plugin settings.

Optionally, you can control which devices are exposed to Homebridge by excluding what you don't want added.

When you install the plugin, settings should open automatically for you, but if it does not go to the "Plugins" tab and click "SETTINGS" link for the Aqua Connect Lite plugin.

Without Homebridge UI

Add this...

{
    "bridge_ip_address": "xxx.xxx.xxx.xxx",
    "exclude_accessories": [
    ],
    "platform": "AquaConnectLite"
}

to your Homebridge config.json in the "platforms" array.

To exclude accessories, enter the accessory name in the exclude_accessories array

"exclude_accessories": [
    "Aux 1",
    "Aux 2"
]

Accessories available for exclusion are...

"Pool Light", "Aux 1", "Aux 2"

Troubleshooting

Im making a bit of an assumption that the key indexes and web process key's are the same across all Pro Logic P4 controllers connected to Aqua Connect. If these settings are not the same, it will cause the plugin to behave unexpectedly and either not work or turn on and off incorrect pool functions. If this happens in your setup, open an issue here. and I will add in some override settings.