-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathheater-connector.py
64 lines (44 loc) · 1.93 KB
/
heater-connector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
import paho.mqtt.client as paho # pip install paho-mqtt
import time
import logging
import sys
import subprocess
from pathlib import Path
from config import *
FREQUENCY = 5 # query ever x sec
def sensor_data():
values = {}
devices_path = Path('/sys/bus/w1/devices')
for device in devices_path.iterdir():
if not device.is_dir() or device.name == 'w1_bus_master1':
continue
device_temperature_file = devices_path / device / 'temperature'
temperture_string = device_temperature_file.read_text()
temperature = float(temperture_string) / 1000
values[device.name] = temperature
return values
if __name__ == '__main__':
logging.basicConfig(stream=sys.stderr, level=logging.INFO)
mqttc = paho.Client('heater-connector', clean_session=True)
# mqttc.enable_logger()
mqttc.will_set("{}/connectorstatus".format(HEATER_MQTT_PREFIX), "Heater Connector: LOST_CONNECTION", 0, retain=True)
mqttc.connect(BROKER_HOST, BROKER_PORT, 60)
logging.info("Connected to {}:{}".format(BROKER_HOST, BROKER_PORT))
mqttc.publish("{}/connectorstatus".format(HEATER_MQTT_PREFIX), "Heater Connector: ON-LINE", retain=True)
mqttc.loop_start()
while True:
try:
values = sensor_data()
for k, v in values.items():
(result, mid) = mqttc.publish("{}/{}".format(HEATER_MQTT_PREFIX, k), str(v), 0)
logging.debug("Pubish Result: {} MID: {} for {}: {}".format(result, mid, k, v)) # noqa E501
time.sleep(FREQUENCY)
except KeyboardInterrupt:
break
except Exception:
raise
mqttc.publish("{}/connectorstatus".format(HEATER_MQTT_PREFIX), "Heater Connector: OFF-LINE", retain=True)
mqttc.disconnect()
mqttc.loop_stop() # waits, until DISCONNECT message is sent out
logging.info("Disconnected from to {}:{}".format(BROKER_HOST, BROKER_PORT))