Commented on io value update

After creating a value list I update the last item to itself be a list of
items. This is so it may hold binary data for IO.
This commit is contained in:
Bryce Salmi 2017-03-13 00:03:52 -07:00
parent e890fe8e3a
commit b5b45b3c09
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ class TelemetryReport(APRSPacket):
format = 'raw'
telemetry = dict(seq=0,
vals=['0']*6)
telemetry['vals'][5] = ['1']*8
telemetry['vals'][5] = ['1']*8 # Replace io data with list of 8 values
comment = ''
def _serialize_body(self):