Changed test.py to read 0.bin instead of 1.bin

This commit is contained in:
Alex Huddleston 2017-12-01 20:16:56 +00:00
parent 8eaa3abd5b
commit ff8986e103

View file

@ -1,4 +1,4 @@
with open('data/1.bin', 'rb') as f:
with open('data/0.bin', 'rb') as f:
data = f.read()
print(hex(int.from_bytes(data, byteorder='little', signed=False)))