-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmachine.py
722 lines (625 loc) · 26.8 KB
/
machine.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
import asyncio
import hashlib
import json
import os
from named_thread import NamedThread
import time
from enum import Enum
import sentry_sdk
import random
import string
from packaging import version
from config import (
CONFIG_LOGGING,
CONFIG_SYSTEM,
CONFIG_USER,
CONFIG_MANUFACTURING,
DISALLOW_FIRMWARE_FLASHING,
LOGGING_SENSOR_MESSAGES,
MACHINE_COLOR,
MACHINE_SERIAL_NUMBER,
MACHINE_BUILD_DATE,
MACHINE_BATCH_NUMBER,
MACHINE_HEAT_ON_BOOT,
MeticulousConfig,
)
from esp_serial.connection.emulator_serial_connection import EmulatorSerialConnection
from esp_serial.connection.fika_serial_connection import FikaSerialConnection
from esp_serial.connection.usb_serial_connection import USBSerialConnection
from esp_serial.data import (
ButtonEventData,
ButtonEventEnum,
ESPInfo,
MachineStatus,
SensorData,
ShotData,
MachineNotify,
HeaterTimeoutInfo,
)
from esp_serial.esp_tool_wrapper import ESPToolWrapper
from log import MeticulousLogger
from notifications import Notification, NotificationManager, NotificationResponse
from shot_debug_manager import ShotDebugManager
from shot_manager import ShotManager
from sounds import SoundPlayer, Sounds
from manufacturing import (
FORCE_MANUFACTURING_ENABLED_KEY,
)
def toggle_sentry(enabled):
# Disable sentry if we are on manufacturing mode
sentry_client = sentry_sdk.get_client()
if sentry_client:
if enabled:
logger.info("Sentry disabled: In Manufacturing mode")
else:
logger.info("Sentry enabled: Manufacturing mode disabled")
sentry_client.options["enabled"] = enabled
else:
logger.error(
f'Cannot get sentry client to toggle to {"enabled" if enabled else "disabled"}'
)
logger = MeticulousLogger.getLogger(__name__)
# can be from [FIKA, USB, EMULATOR / EMULATION]
BACKEND = os.getenv("BACKEND", "FIKA").upper()
class esp_nvs_keys(Enum):
color = "color_key"
serial_number = "serial_number_key"
batch_number = "batch_number_key"
build_date = "build_date_key"
class Machine:
ALLOWED_BACKEND_ACTIONS = ["reset"]
ALLOWED_ESP_ACTIONS = [
"start",
"stop",
"tare",
"scale_master_calibration",
"preheat",
"continue",
"home",
"purge",
]
_connection = None
_thread = None
_stopESPcomm = False
_sio = None
_espNotification = Notification("", [NotificationResponse.OK])
heater_timeout_info: HeaterTimeoutInfo = None
infoReady = False
profileReady = False
data_sensors: ShotData = ShotData(
state=MachineStatus.IDLE, status=MachineStatus.IDLE, profile=MachineStatus.IDLE
)
sensor_sensors: SensorData = None
esp_info = None
reset_count = 0
shot_start_time = 0
emulated = False
firmware_available = None
firmware_running = None
startTime = None
is_idle = True
enable_manufacturing = False
def toggle_manufacturing_mode(enabled):
Machine.enable_manufacturing = enabled
toggle_sentry(enabled=not enabled)
def validate_manufacturing():
if MeticulousConfig[CONFIG_MANUFACTURING][FORCE_MANUFACTURING_ENABLED_KEY]:
Machine.toggle_manufacturing_mode(enabled=True)
return
# Look for the S/N in the .yml file, if there is a SN we dont enable it by default
serial: str | None = MeticulousConfig[CONFIG_SYSTEM][MACHINE_SERIAL_NUMBER]
if (
serial is not None
and serial != ""
and serial != "NOT_ASSIGNED"
and not serial.startswith("999")
):
return
Machine.toggle_manufacturing_mode(enabled=True)
@staticmethod
def generate_random_serial():
random_digits = "".join(random.choices(string.digits, k=5))
return f"999{random_digits}"
def check_machine_alive():
if not Machine.infoReady:
if MeticulousConfig[CONFIG_USER][DISALLOW_FIRMWARE_FLASHING]:
logger.warning(
"The ESP never send an info, but user requested no updates!"
)
else:
logger.warning(
"The ESP never send an info, flashing latest firmware to be sure"
)
Machine.startUpdate()
else:
logger.info("The ESP is alive")
def init(sio):
Machine._sio = sio
Machine.firmware_available = Machine._parseVersionString(
ESPToolWrapper.get_version_from_firmware()
)
# If we dont have a serial we still want to be able to show ... something
serial = MeticulousConfig[CONFIG_SYSTEM][MACHINE_SERIAL_NUMBER]
if serial is None or serial == "":
serial = Machine.generate_random_serial()
MeticulousConfig[CONFIG_SYSTEM][MACHINE_SERIAL_NUMBER] = serial
MeticulousConfig.save()
Machine.validate_manufacturing()
if Machine._connection is not None:
logger.warning("Machine.init was called twice!")
return
match (BACKEND):
case "USB":
Machine._connection = USBSerialConnection("/dev/ttyUSB0")
case "EMULATOR" | "EMULATION":
Machine._connection = EmulatorSerialConnection()
Machine.emulated = True
# Everything else is proper fika Connection
case "FIKA" | _:
Machine._connection = FikaSerialConnection("/dev/ttymxc0")
Machine.writeStr("\x03")
Machine.action("info")
def startLoop():
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_until_complete(Machine._read_data())
loop.close()
def flashingEsp():
time.sleep(60)
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_until_complete(Machine.check_machine_alive())
loop.close()
Machine._thread = NamedThread("MachineSerial", target=startLoop)
Machine._flashingThread = NamedThread("FlashingEsp", target=flashingEsp)
Machine._thread.start()
Machine._flashingThread.start()
class ReadLine:
def __init__(self, s):
self.buf = bytearray()
self.s = s
def readline(self):
i = self.buf.find(b"\n")
if i >= 0:
r = self.buf[: i + 1]
self.buf = self.buf[i + 1 :]
return r
while not Machine._stopESPcomm:
i = max(1, min(2048, self.s.in_waiting))
data = self.s.read(i)
i = data.find(b"\n")
if i >= 0:
r = self.buf + data[: i + 1]
self.buf[0:] = data[i + 1 :]
return r
else:
self.buf.extend(data)
return self.buf
async def _read_data(): # noqa: C901
Machine.shot_start_time = time.time()
Machine._connection.port.reset_input_buffer()
Machine._connection.port.write(b"32\n")
uart = Machine.ReadLine(Machine._connection.port)
old_status = MachineStatus.IDLE
old_ready = False
time_flag = False
info_requested = False
time_passed = 0
emulated_firmware = False
previous_preheat_remaining = None
logger.info("Starting to listen for esp32 messages")
Machine.startTime = time.time()
while True:
if Machine._stopESPcomm:
await asyncio.sleep(0.1)
Machine.startTime = time.time()
continue
data = uart.readline()
if len(data) > 0:
# data_bit = bytes(data)
try:
data_str = data.decode("utf-8")
except Exception:
logger.info(f"decoding fails, message: {data}")
continue
if MeticulousConfig[CONFIG_LOGGING][LOGGING_SENSOR_MESSAGES]:
logger.info(data_str.strip("\r\n"))
data_str_sensors = data_str.strip("\r\n").split(",")
# potential message types
button_event = None
sensor = None
data = None
info = None
notify = None
if (
data_str.startswith("rst:0x")
and "boot:0x16 (SPI_FAST_FLASH_BOOT)" in data_str
):
Machine.reset_count += 1
Machine.startTime = time.time()
Machine.esp_info = None
info_requested = False
Machine.infoReady = False
Machine.profileReady = False
if Machine.reset_count >= 3:
logger.warning("The ESP seems to be resetting, sending update now")
Machine.startUpdate()
Machine.reset_count = 0
if (
Machine.infoReady
and not info_requested
and Machine.esp_info is None
):
logger.info(
"Machine has not provided us with a firmware version yet. Requesting now"
)
Machine.action("info")
info_requested = True
match (data_str_sensors):
# FIXME: This should be replace in the firmware with an "Event," prefix
# for cleanliness
case [
"CCW"
| "CW"
| "push"
| "pu_d"
| "elng"
| "ta_d"
| "ta_l"
| "strt"
] as ev:
button_event = ButtonEventData.from_args(ev)
case ["Event", *eventData]:
button_event = ButtonEventData.from_args(eventData)
case ["Data", *dataArgs]:
data = ShotData.from_args(dataArgs)
case ["Sensors", colorCodedString]:
sensor = SensorData.from_color_coded_args(colorCodedString)
case ["Sensors", *sensorArgs]:
sensor = SensorData.from_args(sensorArgs)
case ["ESPInfo", *infoArgs]:
info = ESPInfo.from_args(infoArgs)
case ["Notify", *notifyArgs]:
notify = MachineNotify(
notifyArgs[0], ",".join(notifyArgs[1:]).replace(";", "\n")
)
case ["HeaterTimeoutInfo", *timeoutArgs]:
try:
heater_timeout_info = HeaterTimeoutInfo.from_args(
timeoutArgs
)
Machine.heater_timeout_info = heater_timeout_info
await Machine._sio.emit(
"heater_status", heater_timeout_info.preheat_remaining
)
if (
heater_timeout_info.preheat_remaining == 0
and previous_preheat_remaining != 0
):
logger.info("Heater_status: off")
previous_preheat_remaining = (
heater_timeout_info.preheat_remaining
)
except Exception as e:
logger.error(
f"Error processing HeaterTimeoutInfo: {e}",
exc_info=True,
)
case [*_]:
logger.info(data_str.strip("\r\n"))
old_ready = Machine.infoReady
if data is not None:
Machine.is_idle = data.status == MachineStatus.IDLE
is_purge = data.status == MachineStatus.PURGE
is_retracting = data.status == MachineStatus.RETRACTING
is_preparing = data.status == MachineStatus.CLOSING_VALVE
is_heating = data.status == MachineStatus.HEATING
if is_preparing and data.status != old_status:
time_flag = True
shot_start_time = time.time()
logger.info("shot start_time: {:.1f}".format(shot_start_time))
ShotManager.start()
SoundPlayer.play_event_sound(Sounds.BREWING_START)
if old_status == MachineStatus.IDLE and not Machine.is_idle:
ShotDebugManager.start()
if is_heating or is_preparing or is_retracting:
time_passed = 0
if Machine.is_idle and old_status != MachineStatus.IDLE:
SoundPlayer.play_event_sound(Sounds.IDLE)
if Machine.is_idle or is_purge or is_retracting:
if time_flag is True:
SoundPlayer.play_event_sound(Sounds.BREWING_END)
time_flag = False
ShotManager.stop()
if Machine.is_idle:
ShotDebugManager.stop()
if is_heating and old_status != MachineStatus.HEATING:
time_passed = 0
SoundPlayer.play_event_sound(Sounds.HEATING_START)
if old_status == MachineStatus.HEATING and not is_heating:
SoundPlayer.play_event_sound(Sounds.HEATING_END)
if time_flag:
time_passed = int((time.time() - shot_start_time) * 1000.0)
Machine.data_sensors = data.clone_with_time_and_state(
time_passed, True
)
ShotManager.handleShotData(Machine.data_sensors)
else:
Machine.data_sensors = data.clone_with_time_and_state(
time_passed, False
)
ShotDebugManager.handleShotData(Machine.data_sensors)
old_status = Machine.data_sensors.status
Machine.infoReady = True
if sensor is not None:
Machine.sensor_sensors = sensor
Machine.reset_count = 0
ShotDebugManager.handleSensorData(Machine.sensor_sensors)
if time_flag:
ShotManager.handleSensorData(Machine.sensor_sensors)
if info is not None:
Machine.esp_info = info
Machine.reset_count = 0
Machine.infoReady = True
info_requested = False
Machine.firmware_running = Machine._parseVersionString(
info.firmwareV
)
if (
info.serialNumber != ""
and info.serialNumber != "NOT_ASSIGNED"
and info.color != ""
and info.color != "NOT_ASSIGNED"
and info.batchNumber != ""
and info.batchNumber != "NOT_ASSIGNED"
and info.buildDate != ""
and info.buildDate != "NOT_ASSIGNED"
):
MeticulousConfig[CONFIG_SYSTEM][
MACHINE_SERIAL_NUMBER
] = info.serialNumber
MeticulousConfig[CONFIG_SYSTEM][MACHINE_COLOR] = info.color
MeticulousConfig[CONFIG_SYSTEM][
MACHINE_BATCH_NUMBER
] = info.batchNumber
MeticulousConfig[CONFIG_SYSTEM][
MACHINE_BUILD_DATE
] = info.buildDate
MeticulousConfig.save()
# Enable / Disable manufacturing mode based on ESP answer
serial_assigned = (
MeticulousConfig[CONFIG_SYSTEM][MACHINE_SERIAL_NUMBER]
is not None
)
if Machine.enable_manufacturing != serial_assigned:
if not MeticulousConfig[CONFIG_MANUFACTURING][
FORCE_MANUFACTURING_ENABLED_KEY
]:
Machine.toggle_manufacturing_mode(enabled=False)
if not emulated_firmware:
logger.info(
f"ESPInfo running firmware version: {Machine.firmware_running} on pinout version {Machine.esp_info.espPinout} Machine_color: {Machine.esp_info.color} Serial_number: {Machine.esp_info.serialNumber} Batch_number: {Machine.esp_info.batchNumber} Build_date: {Machine.esp_info.buildDate}"
)
logger.info(
f"Backend available firmware version: {Machine.firmware_available}"
)
emulated_firmware = Machine.emulated
needs_update = False
if (
Machine.firmware_available is not None
and Machine.firmware_available is not None
):
if (
Machine.firmware_running["Release"]
< Machine.firmware_available["Release"]
):
needs_update = True
if (
Machine.firmware_running["Release"]
== Machine.firmware_available["Release"]
):
try:
running_extra = int(
Machine.firmware_running["ExtraCommits"]
)
available_extra = int(
Machine.firmware_available["ExtraCommits"]
)
if running_extra < available_extra:
needs_update = True
except Exception:
pass
if (
needs_update
and not MeticulousConfig[CONFIG_USER][
DISALLOW_FIRMWARE_FLASHING
]
):
info_string = f"Firmware {Machine.firmware_running.get('Release')}-{Machine.firmware_running['ExtraCommits']} is outdated, upgrading"
logger.info(info_string)
Machine.startUpdate()
if button_event is not None:
if (
button_event.event is not ButtonEventEnum.ENCODER_CLOCKWISE
and button_event.event
is not ButtonEventEnum.ENCODER_COUNTERCLOCKWISE
):
logger.debug(f"Button Event recieved: {button_event}")
await Machine._sio.emit("button", button_event.to_sio())
# FIXME this should be a callback to the frontends in the future
if (
button_event is not None
and button_event.event is ButtonEventEnum.ENCODER_DOUBLE
):
logger.info("DOUBLE ENCODER, Returning to idle")
Machine.end_profile()
if (
not old_ready
and Machine.infoReady
and MeticulousConfig[CONFIG_USER][MACHINE_HEAT_ON_BOOT]
):
if Machine.data_sensors.status == MachineStatus.IDLE:
logger.info("Tell the machine to preheat")
logger.warning("NOT IMPLEMENTED YET")
# Machine.action("preheat")
if notify is not None:
if notify.notificationType == "acaia_msg":
responseOptions = []
else:
responseOptions = [NotificationResponse.OK]
if Machine._espNotification.acknowledged:
Machine._espNotification = Notification(
notify.message, responseOptions
)
else:
Machine._espNotification.message = notify.message
Machine._espNotification.respone_options = responseOptions
logger.info(
f"New Notification from ESP: {Machine._espNotification.message}"
)
NotificationManager.add_notification(Machine._espNotification)
def startScaleMasterCalibration():
Machine.action("scale_master_calibration")
def startUpdate():
updateNotification = Notification(
"Upgrading system realtime core. This will take around 20 seconds. The machines buttons will be disabled during the upgrade",
)
NotificationManager.add_notification(updateNotification)
Machine._stopESPcomm = True
error_msg = Machine._connection.sendUpdate()
Machine._stopESPcomm = False
if error_msg:
updateNotification.message = f"Realtime core upgrade failed: {error_msg}. The machine will ensure a good state on next start. If you encounter any errors please reach out to product support!"
else:
updateNotification.message = "The realtime core was upgraded sucessfully! Buttons will be enabled again in around 5 seconds"
updateNotification.respone_options = [NotificationResponse.OK]
NotificationManager.add_notification(updateNotification)
return error_msg
def end_profile():
if Machine.data_sensors.status == "idle":
return
if (
Machine.data_sensors.state == "brewing"
and Machine.data_sensors.status
not in ["heating", "Pour water and click to continue", "click to start"]
):
Machine.action("home")
else:
Machine.action("stop")
SoundPlayer.play_event_sound(Sounds.ABORT)
def action(action_event) -> bool:
logger.info(f"sending action,{action_event}")
if action_event == "start" and not Machine.profileReady:
logger.warning("No profile loaded, sending last loaded profile to esp32")
from profiles import ProfileManager
last_profile = ProfileManager.get_last_profile()
if last_profile is None:
logger.error("No known last profile which could be sent to the esp32")
return False
ProfileManager.send_profile_to_esp32(last_profile["profile"])
machine_msg = f"action,{action_event}\x03"
Machine.writeStr(machine_msg)
return True
def writeStr(content):
Machine.write(str.encode(content))
def write(content):
if not Machine._stopESPcomm:
Machine._connection.port.write(content)
def reset():
Machine._connection.reset()
Machine.infoReady = False
Machine.profileReady = False
Machine.startTime = time.time()
def send_json_with_hash(json_obj):
json_string = json.dumps(json_obj)
json_data = "json\n" + json_string + "\x03"
logger.debug("JSON to stream to the machine:")
logger.debug(json_data)
json_hash = hashlib.md5(json_data[5:-1].encode("utf-8")).hexdigest()
logger.info(f"JSON Hash: {json_hash}")
start = time.time()
Machine.write("hash,".encode("utf-8"))
Machine.write(json_hash.encode("utf-8"))
Machine.write("\x03".encode("utf-8"))
Machine.write(json_data.encode("utf-8"))
end = time.time()
time_ms = (end - start) * 1000
if time_ms > 10:
time_str = f"{int(time_ms)} ms"
else:
time_str = f"{int(time_ms*1000)} ns"
logger.info(f"Streaming profile to ESP32 took {time_str}")
Machine.profileReady = True
def setSerial(color, serial, batch_number, build_date):
write_request = "nvs_request,write,"
Machine.write(
(write_request + esp_nvs_keys.color.value + "," + color + "\x03").encode(
"utf-8"
)
)
Machine.write(
(
write_request + esp_nvs_keys.serial_number.value + "," + serial + "\x03"
).encode("utf-8")
)
Machine.write(
(
write_request
+ esp_nvs_keys.batch_number.value
+ ","
+ batch_number
+ "\x03"
).encode("utf-8")
)
Machine.write(
(
write_request
+ esp_nvs_keys.build_date.value
+ ","
+ build_date
+ "\x03"
).encode("utf-8")
)
serialNotification = Notification(
f"""
Serial number: {serial}\n
Batch number: {batch_number}\n
Color: {color}\n
Build Date: {build_date}
""",
responses=[NotificationResponse.OK],
)
NotificationManager.add_notification(serialNotification)
MeticulousConfig[CONFIG_SYSTEM][MACHINE_SERIAL_NUMBER] = serial
MeticulousConfig[CONFIG_SYSTEM][MACHINE_COLOR] = color
MeticulousConfig[CONFIG_SYSTEM][MACHINE_BATCH_NUMBER] = batch_number
MeticulousConfig[CONFIG_SYSTEM][MACHINE_BUILD_DATE] = build_date
MeticulousConfig.save()
# TODO FIXME IMPLEMENT THIS!!!!
def _parseVersionString(version_str: str):
release = None
ncommits = 0
sha = ""
modifier = ""
if version_str is None or version_str == "":
return None
components = version_str.strip().split("-")
try:
release = version.Version(components.pop(0))
if len(components) > 0:
ncommits = components.pop(0)
if len(components) > 0:
sha = components.pop(0)
if len(components) > 0:
modifier = components.pop(0)
return {
"Release": release,
"ExtraCommits": ncommits,
"SHA": sha,
"Local": modifier,
}
except Exception as e:
logger.warning(
"Failed parse firmware version:", exc_info=e, stack_info=True
)
return None