Hey guys,
i'm getting periodic input data from a Bluetooth over the comport device like:
print: 100
print: 28
print: 0
print: 132
print: 4
print: 100
print: 28
print: 0
print: 132
print: 4
...and so on. You see it's always 5 bytes with number 100 starting the series.
Now I want to store these numbers in a 5-element-list/pack to work with that.
I thought about starting to read with [== 100], but I'm not sure how to continue and how to store that. Do you think that the with [list append] or [pack f f f f f] objects it could work somehow?
Thanks for your help!