-
Good afternoon! Making good progress on the setup. Have 3 questions, 2 getting AqualinkD settings tweaked, and then 1 getting everything working in Home Assistant with MQTT. Right now most things works well off the WebUI settings, but want to get fully integrated into Home Assistant ultimately. Install details: Raspberry Pi Zero 2 W for AqualinkD (v2.3.4 latest); RPi4 running as Home Assistant for the house 2 attachments: Aqualink.conf file from the Pi Zero 2 W, and the Home Assistant configuration.yaml file from the Pi4
Thanks so much - really appreciate the community here! (And what a fantastic product in AqualinkD!!) Here's what's in the AqualinkD logs: Here's what the Home Assistant Mosquitto Broker logs say: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
#1. Looks like your install has used the solar-heater as the water feature. On a 2/6 Dual panel, that's button 11. So in your config you'll need something like below.
Also by default, solar_heater is hidden from the web UI (since very few use it). So you need to unhide it.
To This. (remove // and ADD the , after "CHEM/ORP")
#2 Sorry, that's fixed. Most home hubs have air temp and water temp, so I added pool to be specific. I'll look at making this a configuration option. #3 You will probably have to put the MQTT Broker on Home Assistant in debug mode, and get some more details on why it's dropping the connection. |
Beta Was this translation helpful? Give feedback.
For testing MQTT, it's probably easier to install mosquitto_sub on the Pi running AqualinkD, then run the below to test the connection.
mosquitto_sub -v -h <mosquitto_ip_address> -p 1883 -t '#' -u <user> -P <password>
If that connects without errors and starts printing messages, then let me know. my guess is it will fail and give you some more information as to why.
mosquitto_sub is part of mosquitto-clients tools. So the below will install that for you.
sudo apt install mosquitto-clients