control_relay(device, relay, state)
+def mqtt_connect(client, userdata, flags, rc):
+ if debug:
+ print("Connected to MQTT server")
+
+ client.publish("relay/{}/LWT".format(serno_str), "Online", retain=True)
+ print("Subscribing to %s" % prefix.format(serno_str))
+ client.subscribe(prefix.format(serno_str))
+
+
def uptime():
with open('/proc/uptime', 'r') as f:
seconds = int(float(f.readline().split()[0]))
client.username_pw_set(auth['username'], auth['password'])
client.user_data_set(relay)
client.on_message = mqtt_message
+client.on_connect = mqtt_connect
client.connect(Broker, port=8883)
-print("Subscribing to %s" % prefix.format(serno_str))
-client.subscribe(prefix.format(serno_str))
client.loop_start()
+client.will_set("relay/{}/LWT".format(serno_str), "Offline", retain=True)
while True:
state = {