Skip to content
Snippets Groups Projects
Commit 6bb6dd9e authored by Dónal Murray's avatar Dónal Murray
Browse files

Change front end generator to use new little-endian format

parent df60b426
No related merge requests found
......@@ -64,12 +64,12 @@ class svpi():
# send alarm
alarm = np.random.randint(0, 6)
self._currentAlarm = alarm
return bytearray((0xA0,0x01,0x00,0x00,0x00,alarm))
return bytearray((0xA0,0x01,alarm,0x00,0x00,0x00))
else:
# stop previous alarm
alarm = self._currentAlarm
self._currentAlarm = None
return bytearray((0xA0,0x02,0x00,0x00,0x00,alarm))
return bytearray((0xA0,0x02,alarm,0x00,0x00,0x00))
return None
def getThresholds(self) -> List[float]:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment