-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapdash.py
106 lines (98 loc) · 4.07 KB
/
snapdash.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import time
import datetime
import traceback
import config
import io_data
import dashboard
import rotary_encoder
import key_reader
import sensors
import hass
import mqtt
from utils import log_stderr, os_async_command
io_status = io_data.Status()
dash = dashboard.Dashboard()
rotary = rotary_encoder.Rotary()
sensor = sensors.Sensors()
mqtt = mqtt.MQTT(io_status)
if config.TEST_MODE:
keyreader = key_reader.KeyReader(block=False)
LCD_REFRESH_TIME = .2
CONTENT_REFRESH_TIME = 1
STATE_REFRESH_TIME_ACTIVE = 10
STATE_REFRESH_TIME_INACTIVE = 120
TEMPERATURE_REFRESH_TIME = 20
TEMPERATURE_MQTT_PUBLISH_TIME = 900 # 15 mins
TEMPERATURE_MQTT_PUBLISH_THRESHOLD = 1
INACTIVE_MENU_SECS = 5
INACTIVE_DISPLAY_SECS = 20
def main():
# initialize refresh timeouts
lcd_refresh_time = datetime.datetime.now()
content_refresh_time = datetime.datetime.now()
state_refresh_time = datetime.datetime.now()
inactive_time = datetime.datetime.now()
temperature_time = datetime.datetime.now() - datetime.timedelta(seconds=TEMPERATURE_REFRESH_TIME)
temperature_mqtt_time = datetime.datetime.now()
temperature_mqtt_last_published = 0
hass.get_status(io_status)
dash.idle_update(True, INACTIVE_DISPLAY_SECS)
dash.content_update(io_status)
while True:
try:
for loop in range(10):
now = datetime.datetime.now()
command = rotary.scan()
if config.TEST_MODE and command is None:
command = keyreader.scan()
if command is not None:
inactive_time = now
if not dash.is_active:
command = None
dash.idle_update(True, INACTIVE_DISPLAY_SECS)
if dash.menu_action(io_status, command):
# anticipated refresh
state_refresh_time = now - datetime.timedelta(seconds=STATE_REFRESH_TIME_ACTIVE - 1)
time.sleep(.01)
if (now - lcd_refresh_time).total_seconds() >= LCD_REFRESH_TIME:
dash.update()
lcd_refresh_time = now
if (now - content_refresh_time).total_seconds() >= CONTENT_REFRESH_TIME:
dash.content_update(io_status)
content_refresh_time = now
# inactive time reached -> back to default view
if (now - inactive_time).total_seconds() >= INACTIVE_MENU_SECS:
dash.default_view(io_status)
# periodic refresh (longer if inactive)
refresh_timeout = STATE_REFRESH_TIME_ACTIVE if dash.is_active else STATE_REFRESH_TIME_INACTIVE
if (now - state_refresh_time).total_seconds() >= refresh_timeout and not io_status.ui_changing:
hass.get_status(io_status)
state_refresh_time = now
if (now - temperature_time).total_seconds() >= TEMPERATURE_REFRESH_TIME:
temp = sensor.read_temp()
if temp:
io_status.int_temp_c = temp * config.TEMP_CORRECTION
if abs(temperature_mqtt_last_published -
io_status.int_temp_c) >= TEMPERATURE_MQTT_PUBLISH_THRESHOLD:
# temperature change: update
temperature_mqtt_time = now - datetime.timedelta(seconds=TEMPERATURE_MQTT_PUBLISH_TIME)
temperature_time = now
if (now - temperature_mqtt_time).total_seconds() >= TEMPERATURE_MQTT_PUBLISH_TIME:
if io_status.int_temp_c:
mqtt.publish()
temperature_mqtt_last_published = io_status.int_temp_c
temperature_mqtt_time = now
else:
temperature_mqtt_time += datetime.timedelta(seconds=TEMPERATURE_REFRESH_TIME)
except (KeyboardInterrupt, SystemExit):
# cleanup
dash.cleanup()
rotary.cleanup()
sensor.cleanup()
mqtt.cleanup()
raise
except Exception:
log_stderr(traceback.format_exc())