-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathController.py
129 lines (114 loc) · 4.49 KB
/
Controller.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
from time import sleep, time
import datetime
from pymsgbox import *
import Steps
from PyQt5.QtCore import QThread, pyqtSignal
class Controller(QThread):
program_changed = pyqtSignal([object])
sensors_changed = pyqtSignal(object)
temp_changed = pyqtSignal(float)
pump_changed = pyqtSignal(bool)
def __init__(self, settings, coms, script, parent=None):
QThread.__init__(self, parent)
self.settings = settings
self.coms = coms
self.coms.pump_off()
self.pump = False
self.program = [step for step in map(Steps.parse, script) if step]
self.current_step = None
self.to_pause = False
self.to_break = False
self.next_step = 0
def name_sensors(self, raw):
return dict((self.settings['names'].get(k) or k, v) for k, v in raw.items())
def evaluate(self, op, index):
self.program_changed.emit(self.program)
self.to_pause = False
if op.tag == 'TARGET':
print('TARGET command deprecated, use settings file.')
if op.tag == 'HEAT':
self.coms.set_temperature(op.temp)
while not self.to_break:
temps = self.coms.get_temperatures()
self.sensors_changed.emit(self.name_sensors(temps))
print(index, '-', self.name_sensors(temps))
try:
if temps[self.coms.sensor] >= op.temp:
break
except KeyError:
print('Unknown target sensor {}!'.format(self.coms.sensor))
print('Connected sensors are:')
print('\n'.join(*temps.keys()))
exit(1)
self.temp_changed.emit(temps[self.coms.sensor])
if self.to_pause:
self.coms.set_temperature(-100000000.0)
alert(text='PAUSE', title='', button='OK')
self.to_pause = False
self.coms.set_temperature(op.temp)
sleep(5)
if op.tag == 'COOK':
start = time()
self.coms.set_temperature(op.temp)
while not self.to_break:
temps = self.coms.get_temperatures()
self.sensors_changed.emit(self.name_sensors(temps))
print(index, '-', self.name_sensors(temps))
remaining = start + op.time - time()
if remaining < 0:
break
print('Time remaining:', datetime.timedelta(seconds=remaining))
self.temp_changed.emit(temps[self.coms.sensor])
if self.to_pause:
pauseStart = time()
self.coms.set_temperature(-100000000.0)
alert(text='PAUSE', title='', button='OK')
self.to_pause = False
self.coms.set_temperature(op.temp)
start += time() - pauseStart
sleep(5)
if op.tag == 'PAUSE':
self.coms.set_temperature(-100000000.0)
alert(text=op.msg, title='', button='OK')
if op.tag == 'DONE':
self.coms.set_temperature(-100000000.0)
self.coms.set_sensor('0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0')
def pump_toggle(self, newState):
if self.pump == newState:
return
if self.pump:
self.coms.pump_off()
self.pump = False
else:
self.coms.pump_on()
self.pump = True
self.pump_changed.emit(self.pump)
def shift_temp(self, diff):
try:
self.current_step.temp += diff
if not self.to_pause:
self.coms.set_temperature(self.current_step.temp)
self.program_changed.emit(self.program)
except Exception as e:
print(e)
def shift_time(self, diff):
try:
self.current_step.time += diff
self.program_changed.emit(self.program)
except Exception as e:
print(e)
def shift_step(self, diff):
if not self.to_break:
diff -= 1
self.next_step = max(0, self.next_step + diff)
self.to_break = True
def request_pause(self):
self.to_pause = True
def brew_loop(self):
while self.next_step < len(self.program):
self.current_step = self.program[self.next_step]
self.next_step += 1
self.to_break = False
self.evaluate(self.current_step, self.next_step-1)
def run(self):
self.brew_loop()