Hi all,
I'm using https://github.com/habuild/hassio-addons/tree/main/haos-sbfspot to retrieve data from my solar inverter. Connection and data transfer from the inverte to the addon works now.
Theaddon then attempts to send a mqtt message, which should update the "sensors" of an MQTT device that the addon generates (https://github.com/habuild/hassio-addons/tree/main/haos-sbfspot#mqtt).
I installed and configured the Mosquitto broker, set a user and password for the addon, and the addon sucessfully generated a device and sensors.
Every 5 minutes, I can see something like this in the addon logs
MQTT: Publishing (homeassistant/sbfspot_{plantname}/sbfspot_{serial}),"PrgVersion": "3.9.12","Plantname": "MySunny","Timestamp": "2025-09-28T13:50:02+0200",[a bunch of values],"InvSleepTm": "2025-09-28T13:52:47+0200"
Client null sending CONNECT
Client null received CONNACK (0)
Client null sending PUBLISH (d0, q0, r0, m1, 'homeassistant/sbfspot_MySunny/sbfspot_2130066335', ... (773 bytes))
Client null sending DISCONNECT
which to my mind, means that the addon is at least attempting to send off the mqtt message.
However, all my sensors receive an initial value "unknown" and don't get updated.
I'm sure the problem is me having gotten some essential part of the MQTT setup wrong.
Any guidance on how to debug and investigate would be much apprechiate.
Thanks all 🙂
Home Assistant addon using SBFspot Bluetooth SMA inverters - habuild/hassio-addons