mirror of
https://github.com/dekuNukem/USB4VC.git
synced 2025-10-31 11:26:46 -07:00
before serial mouse
This commit is contained in:
244
user_program/old/u2p2_main_before_switching_to_rpi.py
Normal file
244
user_program/old/u2p2_main_before_switching_to_rpi.py
Normal file
@@ -0,0 +1,244 @@
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import select
|
||||
import spidev
|
||||
import threading
|
||||
|
||||
is_on_raspberry_pi = False
|
||||
with open('/etc/os-release') as os_version_file:
|
||||
is_on_raspberry_pi = 'raspbian' in os_version_file.read().lower()
|
||||
|
||||
spi = None
|
||||
gpio_file = None
|
||||
|
||||
if is_on_raspberry_pi:
|
||||
spi = spidev.SpiDev(0, 0) # rasp
|
||||
print("I'm on Raspberry Pi!")
|
||||
os.system("echo 16 > /sys/class/gpio/export")
|
||||
os.system("echo in > /sys/class/gpio/gpio16/direction")
|
||||
os.system("echo rising > /sys/class/gpio/gpio16/edge")
|
||||
gpio_file = open("/sys/class/gpio/gpio16/value", 'rb')
|
||||
print("GPIO init done")
|
||||
else:
|
||||
spi = spidev.SpiDev(0, 0) # lichee
|
||||
print("I'm on custom board!")
|
||||
print("DONT FORGET TO RUN gpio_setup.sh!")
|
||||
gpio_file = open("/sys/class/gpio/gpio131/value", 'rb')
|
||||
|
||||
spi.max_speed_hz = 2000000
|
||||
|
||||
keyboard_opened_device_dict = {}
|
||||
mouse_opened_device_dict = {}
|
||||
gamepad_opened_device_dict = {}
|
||||
|
||||
|
||||
epoll = select.epoll()
|
||||
epoll.register(gpio_file, select.EPOLLET)
|
||||
|
||||
"""
|
||||
def send kb
|
||||
|
||||
def send mouse
|
||||
|
||||
def send js
|
||||
|
||||
read data first, if exception, skip it
|
||||
"""
|
||||
|
||||
"""
|
||||
https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/input-event-codes.h#L38
|
||||
|
||||
xbox gamepad:
|
||||
EVENT TYPE: EV_ABS
|
||||
dpad: ABS_HAT0X ABS_HAT1X
|
||||
buttons: https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/input-event-codes.h#L385
|
||||
sticks: ABS_X, ABS_Y, ABS_RX, ABS_RY
|
||||
"""
|
||||
|
||||
# https://github.com/torvalds/linux/blob/master/include/uapi/linux/input-event-codes.h
|
||||
EV_SYN = 0
|
||||
EV_KEY = 1
|
||||
EV_REL = 2
|
||||
EV_ABS = 3
|
||||
|
||||
SYN_REPORT = 0
|
||||
|
||||
REL_X = 0x00
|
||||
REL_Y = 0x01
|
||||
REL_WHEEL = 0x08
|
||||
|
||||
SPI_BUF_INDEX_MAGIC = 0
|
||||
SPI_BUF_INDEX_SEQNUM = 1
|
||||
SPI_BUF_INDEX_MSG_TYPE = 2
|
||||
|
||||
SPI_MOSI_MSG_KEYBOARD_EVENT = 1
|
||||
SPI_MOSI_MSG_MOUSE_EVENT = 2
|
||||
SPI_MOSI_MSG_GAMEPAD_EVENT = 3
|
||||
SPI_MOSI_MSG_REQ_ACK = 4
|
||||
|
||||
SPI_MISO_MSG_INFO_REPLY = 0
|
||||
SPI_MISO_MSG_KB_LED_REQ = 1
|
||||
|
||||
SPI_MOSI_MAGIC = 0xde
|
||||
SPI_MISO_MAGIC = 0xcd
|
||||
|
||||
keyboard_spi_msg_header = [SPI_MOSI_MAGIC, 0, SPI_MOSI_MSG_KEYBOARD_EVENT, 0]
|
||||
mouse_spi_msg_template = [SPI_MOSI_MAGIC, 0, SPI_MOSI_MSG_MOUSE_EVENT, 0] + [0]*28
|
||||
|
||||
def make_spi_msg_ack():
|
||||
return [SPI_MOSI_MAGIC, 0, SPI_MOSI_MSG_REQ_ACK] + [0]*29
|
||||
|
||||
led_device_path = '/sys/class/leds'
|
||||
|
||||
def get_01(value):
|
||||
if value:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def change_kb_led(ps2kb_led_byte):
|
||||
led_file_list = os.listdir(led_device_path)
|
||||
capslock_list = [os.path.join(led_device_path, x) for x in led_file_list if 'capslock' in x]
|
||||
numlock_list = [os.path.join(led_device_path, x) for x in led_file_list if 'numlock' in x]
|
||||
scrolllock_list = [os.path.join(led_device_path, x) for x in led_file_list if 'scrolllock' in x]
|
||||
|
||||
for item in scrolllock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x1)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x1)} > {os.path.join(item, 'brightness')}")
|
||||
|
||||
for item in numlock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x2)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x2)} > {os.path.join(item, 'brightness')}")
|
||||
|
||||
for item in capslock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x4)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x4)} > {os.path.join(item, 'brightness')}")
|
||||
|
||||
|
||||
def raw_input_event_worker():
|
||||
mouse_spi_packet_dict = {}
|
||||
mouse_button_state_list = [0] * 5
|
||||
print("raw_input_event_parser_thread started")
|
||||
while 1:
|
||||
for key in list(keyboard_opened_device_dict):
|
||||
try:
|
||||
data = keyboard_opened_device_dict[key][0].read(16)
|
||||
except OSError:
|
||||
keyboard_opened_device_dict[key][0].close()
|
||||
del keyboard_opened_device_dict[key]
|
||||
print("keyboard disappeared:", key)
|
||||
if data is None:
|
||||
continue
|
||||
data = list(data[8:])
|
||||
if data[0] == EV_KEY:
|
||||
to_transfer = keyboard_spi_msg_header + data + [0]*20
|
||||
to_transfer[3] = keyboard_opened_device_dict[key][1]
|
||||
spi.xfer(to_transfer)
|
||||
|
||||
for key in list(mouse_opened_device_dict):
|
||||
try:
|
||||
data = mouse_opened_device_dict[key][0].read(16)
|
||||
except OSError:
|
||||
mouse_opened_device_dict[key][0].close()
|
||||
del mouse_opened_device_dict[key]
|
||||
print("mouse disappeared:", key)
|
||||
if data is None:
|
||||
continue
|
||||
data = list(data[8:])
|
||||
# print(data)
|
||||
if data[0] == EV_REL:
|
||||
if data[2] == REL_X:
|
||||
mouse_spi_packet_dict["x"] = data[4:6]
|
||||
if data[2] == REL_Y:
|
||||
mouse_spi_packet_dict["y"] = data[4:6]
|
||||
if data[2] == REL_WHEEL:
|
||||
mouse_spi_packet_dict["scroll"] = data[4:6]
|
||||
if data[0] == EV_KEY:
|
||||
mouse_button_state_list[data[2]-16] = data[4]
|
||||
to_transfer = list(mouse_spi_msg_template)
|
||||
to_transfer[10:13] = data[2:5]
|
||||
to_transfer[13:18] = mouse_button_state_list[:]
|
||||
to_transfer[3] = mouse_opened_device_dict[key][1]
|
||||
spi.xfer(to_transfer)
|
||||
|
||||
if data[0] == EV_SYN and data[2] == SYN_REPORT and len(mouse_spi_packet_dict) > 0:
|
||||
to_transfer = list(mouse_spi_msg_template)
|
||||
if 'x' in mouse_spi_packet_dict:
|
||||
to_transfer[4:6] = mouse_spi_packet_dict['x']
|
||||
if 'y' in mouse_spi_packet_dict:
|
||||
to_transfer[6:8] = mouse_spi_packet_dict['y']
|
||||
if 'scroll' in mouse_spi_packet_dict:
|
||||
to_transfer[8:10] = mouse_spi_packet_dict['scroll']
|
||||
to_transfer[13:18] = mouse_button_state_list[:]
|
||||
to_transfer[3] = mouse_opened_device_dict[key][1]
|
||||
mouse_spi_packet_dict.clear()
|
||||
spi.xfer(to_transfer)
|
||||
|
||||
events = epoll.poll(timeout=0)
|
||||
for df, event_type in events:
|
||||
if 0x8 & event_type:
|
||||
slave_result = None
|
||||
for x in range(2):
|
||||
slave_result = spi.xfer(make_spi_msg_ack())
|
||||
print(slave_result)
|
||||
if slave_result[SPI_BUF_INDEX_MAGIC] == SPI_MISO_MAGIC and slave_result[SPI_BUF_INDEX_MSG_TYPE] == SPI_MISO_MSG_KB_LED_REQ:
|
||||
change_kb_led(slave_result[3])
|
||||
change_kb_led(slave_result[3])
|
||||
|
||||
raw_input_event_parser_thread = threading.Thread(target=raw_input_event_worker, daemon=True)
|
||||
raw_input_event_parser_thread.start()
|
||||
|
||||
input_device_path = '/dev/input/by-path/'
|
||||
|
||||
while 1:
|
||||
try:
|
||||
device_file_list = os.listdir(input_device_path)
|
||||
except Exception as e:
|
||||
print('list input device exception:', e)
|
||||
time.sleep(0.75)
|
||||
continue
|
||||
mouse_list = [os.path.join(input_device_path, x) for x in device_file_list if 'event-mouse' in x]
|
||||
keyboard_list = [os.path.join(input_device_path, x) for x in device_file_list if 'event-kbd' in x]
|
||||
gamepad_list = [os.path.join(input_device_path, x) for x in device_file_list if 'event-joystick' in x]
|
||||
# print(mouse_list)
|
||||
# print(keyboard_list)
|
||||
|
||||
for item in keyboard_list:
|
||||
if item not in keyboard_opened_device_dict:
|
||||
try:
|
||||
this_file = open(item, "rb")
|
||||
os.set_blocking(this_file.fileno(), False)
|
||||
device_index = 0
|
||||
try:
|
||||
device_index = sum([int(x) for x in item.split(':')[1].split('.')][:2])
|
||||
except:
|
||||
pass
|
||||
keyboard_opened_device_dict[item] = (this_file, device_index)
|
||||
print("opened keyboard", keyboard_opened_device_dict[item][1], ':' , item)
|
||||
except Exception as e:
|
||||
print("keyboard open exception:", e)
|
||||
continue
|
||||
|
||||
for item in mouse_list:
|
||||
if item not in mouse_opened_device_dict:
|
||||
try:
|
||||
this_file = open(item, "rb")
|
||||
os.set_blocking(this_file.fileno(), False)
|
||||
device_index = 0
|
||||
try:
|
||||
device_index = sum([int(x) for x in item.split(':')[1].split('.')][:2])
|
||||
except:
|
||||
pass
|
||||
mouse_opened_device_dict[item] = (this_file, device_index)
|
||||
print("opened mouse", mouse_opened_device_dict[item][1], ':' , item)
|
||||
except Exception as e:
|
||||
print("mouse open exception:", e)
|
||||
continue
|
||||
|
||||
time.sleep(0.75)
|
||||
@@ -5,26 +5,16 @@ import select
|
||||
import spidev
|
||||
import threading
|
||||
|
||||
is_on_raspberry_pi = False
|
||||
with open('/etc/os-release') as os_version_file:
|
||||
is_on_raspberry_pi = 'raspbian' in os_version_file.read().lower()
|
||||
|
||||
spi = None
|
||||
gpio_file = None
|
||||
|
||||
if is_on_raspberry_pi:
|
||||
spi = spidev.SpiDev(0, 0) # rasp
|
||||
print("I'm on Raspberry Pi!")
|
||||
os.system("echo 16 > /sys/class/gpio/export")
|
||||
os.system("echo in > /sys/class/gpio/gpio16/direction")
|
||||
os.system("echo rising > /sys/class/gpio/gpio16/edge")
|
||||
gpio_file = open("/sys/class/gpio/gpio16/value", 'rb')
|
||||
print("GPIO init done")
|
||||
else:
|
||||
spi = spidev.SpiDev(0, 0) # lichee
|
||||
print("I'm on custom board!")
|
||||
print("DONT FORGET TO RUN gpio_setup.sh!")
|
||||
gpio_file = open("/sys/class/gpio/gpio131/value", 'rb')
|
||||
spi = spidev.SpiDev(0, 0) # rasp
|
||||
print("I'm on Raspberry Pi!")
|
||||
os.system("echo 16 > /sys/class/gpio/export")
|
||||
os.system("echo in > /sys/class/gpio/gpio16/direction")
|
||||
os.system("echo rising > /sys/class/gpio/gpio16/edge")
|
||||
gpio_file = open("/sys/class/gpio/gpio16/value", 'rb')
|
||||
print("GPIO init done")
|
||||
|
||||
spi.max_speed_hz = 2000000
|
||||
|
||||
@@ -32,7 +22,6 @@ keyboard_opened_device_dict = {}
|
||||
mouse_opened_device_dict = {}
|
||||
gamepad_opened_device_dict = {}
|
||||
|
||||
|
||||
epoll = select.epoll()
|
||||
epoll.register(gpio_file, select.EPOLLET)
|
||||
|
||||
@@ -103,23 +92,13 @@ def change_kb_led(ps2kb_led_byte):
|
||||
scrolllock_list = [os.path.join(led_device_path, x) for x in led_file_list if 'scrolllock' in x]
|
||||
|
||||
for item in scrolllock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x1)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x1)} > {os.path.join(item, 'brightness')}")
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x1)} > {os.path.join(item, 'brightness')}'")
|
||||
|
||||
for item in numlock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x2)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x2)} > {os.path.join(item, 'brightness')}")
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x2)} > {os.path.join(item, 'brightness')}'")
|
||||
|
||||
for item in capslock_list:
|
||||
if is_on_raspberry_pi:
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x4)} > {os.path.join(item, 'brightness')}'")
|
||||
else:
|
||||
os.system(f"echo {get_01(ps2kb_led_byte & 0x4)} > {os.path.join(item, 'brightness')}")
|
||||
|
||||
os.system(f"sudo bash -c 'echo {get_01(ps2kb_led_byte & 0x4)} > {os.path.join(item, 'brightness')}'")
|
||||
|
||||
def raw_input_event_worker():
|
||||
mouse_spi_packet_dict = {}
|
||||
|
||||
Reference in New Issue
Block a user