You're right, it works! Thx :) (it was logical and I missed it...)
And I can confirm : we can switch from an Atomiswave game to another one without turn off/turn on.
No. No zero key.
I try many things, let or comment out the line "s.send(struct.pack("<I", 0x7F000008) + data)".
I suppose I copy correctly and still verify the line(s) before/after added it, I have the same tabs/spaces too.
Here is an exemple.
It's already commented out in piforcetools.py.
Since I added the famous line like this :
def SECURITY_SetKeycode(data):
assert len(data) == 8
#s.send(struct.pack("<I", 0x7F000008) + data)
s.send(struct.pack(">IIIIIIIIH", 0x00000001, 0x1a008104, 0x01000000, 0xf0fffe3f, 0x0000ffff, 0xffffffff...
I tried to comment, put it after (I had already tried a lot of things), but still nothing, the LCD screen doesn't light up.
Arf I'm damned, is my file haunted ? :p
Yes, and I have the same thing as opt2not, I don't have SECURITY_SetKeycode("\x00" *
I have this :
def SECURITY_SetKeycode(data):
assert len(data) == 8
s.send(struct.pack("<I", 0x7F000008) + data)
I tested different ways but it doesn't work for me...
I have a Pi 2 with a LCD screen (from the member Squallrs, I bought it on another forum) and I have the same "structure" as opt2not :
def SECURITY_SetKeycode(data):
assert len(data) == 8
s.send(struct.pack("<I", 0x7F000008) + data)
I try...