forked from bitlair/ansible
power-mqtt: auto-reconnect
This commit is contained in:
parent
4c8fae0657
commit
c105131d60
1 changed files with 2 additions and 1 deletions
|
@ -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'])
|
||||
|
|
Loading…
Add table
Reference in a new issue