|
|
@ -128,7 +128,8 @@ def os_echo_bin(filename, string): |
|
|
|
|
|
|
|
def send_keypress(): |
|
|
|
with open('/dev/hidg0', 'wb') as f: |
|
|
|
f.write(bytearray(b'\x00\x00\x04\x00\x00\x00\x00\x00')) #press the A-button |
|
|
|
#f.write(bytearray(b'\x00\x00\x04\x00\x00\x00\x00\x00')) #press the A-button |
|
|
|
f.write(bytearray(b'\x08\x00\x1C\x00\x00\x00\x00\x00')) #press Win+Y |
|
|
|
time.sleep(0.05) |
|
|
|
f.write(bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00')) #release all keys |
|
|
|
|
|
|
|