8 lines
178 B
Python
8 lines
178 B
Python
import time
|
|
|
|
with open('/dev/hidg0', 'wb') as f:
|
|
f.write(b'\x01\x00\x00\x00\x00\x00\x00\x00')
|
|
time.sleep(0.3)
|
|
f.write(b'\x00\x00\x00\x00\x00\x00\x00\x00')
|
|
|
|
sys.exit() |