Merge pull request #7 from rorosentrater/send_command_enum_fix

bugfix - send_command() enum fix
This commit is contained in:
rorosentrater
2023-12-11 19:39:07 -05:00
committed by GitHub

View File

@@ -309,7 +309,7 @@ class SaturnPrinter:
timestamp = int(time.time() * 1000)
cmd_data = {
"Data": {
"Cmd": cmdid,
"Cmd": cmdid.value,
"Data": data,
"From": 0,
"MainboardID": self.id,