Ben

Results 122 comments of Ben

That config setting is for OS updates (so a check on apt/ apt-get, it doesn't alter the script check. The script check is looking to see if a new version...

Really it should probably be checking https://github.com/ironsheep/RPi-Reporter-MQTT2HA-Daemon/releases/tag/ and looking for a newer version number. Not sure if GitHub has an easy function for that. v1.8.5 http://kz0q.com isn't secure either and...

This could could be used to get latest version (just tested) ``` import requests #https://github.com/ironsheep/RPi-Reporter-MQTT2HA-Daemon.git owner = "ironsheep" repo = "RPi-Reporter-MQTT2HA-Daemon" response = requests.get(f"https://api.github.com/repos/{owner}/{repo}/releases/latest") latest_version = response.json()["name"] print(f"The latest version...

Just go into the python file and comment out the line as shown above. It's not been fixed yet. No doubt lack of time and trying to update it all...

You missed something out of the setup. Start at the beginning and try again.

Odd, I've not had problems sending sensor data or others data over mqtt when this has also been running. Just don't the send code and add to that. On Thu,...

What you're asking is have it check for {hostname} in the string and have it replace it at run time, rather than having to manually change {hostname} in the config....

In the config.ini you create. This # The MQTT name for this Raspberry Pi as a sensor #sensor_name = rpi-{hostname} Should be left as is with the # to have...

Are you using RaspberryPi OS from RaspberryPi.com / Pi Imager or some other version of it? PiOS '11' is Bullseye so should just work. Hostname it retrieved from _/bin/hostname -f_...