power-mqtt: auto-reconnect

This commit is contained in:
polyfloyd 2024-04-14 13:58:07 +02:00
parent 4c8fae0657
commit c105131d60

View file

@ -12,9 +12,10 @@ mqtt_host = '{{ mqtt_internal_host }}'
client = mqtt.Client()
client.connect(mqtt_host, 1883, 60)
client.loop_start()
while True:
sleep(1)
sleep(10)
try:
data = requests.get(f'http://{sdm630_host}/api/v1/data').json()
client.publish('bitlair/power/total_kwh', data['total_power_import_kwh'])