Add heartbeat

This commit is contained in:
Tediore 2021-08-18 14:26:52 -05:00
parent 2d2642d7f9
commit 0405d5600e

View File

@ -132,6 +132,10 @@ def get_info():
logging.debug('Sending MQTT payload: ' + str(payload))
except Exception as e:
logging.error(f'Message send failed: {e}')
try:
client.publish("battery2mqtt/" + MQTT_TOPIC + '/status', 'online', 0, True)
except Exception as e:
logging.error(f'Message send failed: {e}')
check_conditions()
mqtt_connect()