power/usb_acpi.py

9 lines
133 B
Python
Raw Normal View History

2024-10-14 00:23:16 +00:00
import sys
2024-10-13 23:42:39 +00:00
import time
with open('/dev/hidg0', 'wb') as f:
2024-10-14 01:15:27 +00:00
f.write(b'\x01')
2024-10-13 23:49:01 +00:00
time.sleep(0.3)
2024-10-14 01:15:27 +00:00
f.write(b'\x00')
2024-10-13 23:49:01 +00:00
sys.exit()