mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-21 05:50:13 +00:00
wetox updated draw_subghz
This commit is contained in:
parent
0d83983e36
commit
54b58c0021
@ -27,10 +27,7 @@ for line in lines:
|
||||
# Split the data into a list of individual timings
|
||||
timings = []
|
||||
for line in data:
|
||||
timings.append(line.split())
|
||||
|
||||
# Convert the list of lists into a single list of numbers
|
||||
timings = [int(x) for x in timings[0]]
|
||||
timings.extend((int(x) for x in line.split()))
|
||||
|
||||
# Convert timings to a stream of 0s and 1s
|
||||
stream = []
|
||||
|
Loading…
Reference in New Issue
Block a user