Hello everyone,
I need help with setting up my Aquarite+. This is my first time posting a message, so I’ll try to be clear. I have an Aquatite+ Hayward, which I can remotely control via a WiFi module connected to RS-485 WIFI. Here is the module in question: https://www.hayward-pool.com.au/assets/documents/poolsaustralia/pdf/manuals/AQR-wifi-network-upgrade-kit-owners-manual.pdf
It has a local IP, and when I enter it into the browser, I get a response like this:
Pool status Node UUID: 00000000000000#####
Temperature 12.9 °C pH 0.91 ORP 3.25 mV Chlorine concentration not available Conductivity not available
Here is my configuration in configuration.yaml:
aqualogic:
host: 192.168.1.22
port: 80
sensor:
platform: aqualogic
monitored_conditions:
- pool_temp
- air_temp
- status
- pool_chlorinator
- salt_level
- pump_speed
- pump_power
switch:
platform: aqualogic
monitored_conditions:
- lights
- filter
- filter_low_speed
And here is the feedback I get in the log:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner
self.run()
File "/config/custom_components/aqualogic/__init__.py", line 95, in run
self._panel.connect_socket(self._host, self._port)
File "/config/custom_components/aqualogic/core.py", line 139, in connect_socket
self._socket.connect((host, port))
ConnectionRefusedError: [Errno 111] Connection refused
I’m not sure what to do. The only clue I have is that the documentation says it works on RS-485 to Ethernet. But I’ve seen in forums that this shouldn’t be an issue either. And since I’m able to get data via the browser, I think this might be exploitable.
I hope I’ve been clear. Thanks in advance to everyone!