-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcode.py
135 lines (110 loc) · 3.92 KB
/
code.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# **************************************************
# https://github.com/galopago
# A very simple example of RPI Pico HID USB keyboard emulator
# configurable via text file
import time
import board
import digitalio
import usb_hid
import os
from adafruit_hid.keyboard import Keyboard
from adafruit_hid.keyboard_layout_us import KeyboardLayoutUS
from adafruit_hid.keycode import Keycode
from adafruit_debouncer import Debouncer
# *************************************
# config file format structure:
# very crude!, do not include empty lines nor comments!
# first line: GPIO used
# second line: keycodes
# third line: modifiers
# *************************************
# key code names: https://circuitpython.readthedocs.io/projects/hid/en/latest/api.html
# in this example the switch connected to GP18 emulates TAB+LEFT_ALT, and the switch connected to GP19 emulates SPACE
# wrote the lines below in keys.conf file! (remove # in the file!)
#board.GP18,board.GP19
#Keycode.TAB,Keycode.SPACE
#Keycode.LEFT_ALT,None
keys_conf_file="keys.conf"
# Pins, key code, and key modifier.
default_gpio = [board.GP18,board.GP19]
default_keys = [Keycode.TAB,Keycode.SPACE]
default_mod_keys = [Keycode.LEFT_ALT,None]
# Array of key objects
key_pin_array = []
key_pin_array_debounced = []
# The keyboard object!
time.sleep(1) # Sleep for a bit to avoid a race condition on some systems
keyboard = Keyboard(usb_hid.devices)
keyboard_layout = KeyboardLayoutUS(keyboard) # US keyboard used
print("Reading config keys file...")
flist=os.listdir()
print("Debug",board.GP18)
strconfig = "board.GP17"
iotest = digitalio.DigitalInOut(eval(strconfig))
if keys_conf_file in flist:
print("config file found!:",keys_conf_file)
# ****** TODO some sanity checks!!! *******
fp = open(keys_conf_file,'r')
# reading GPIO config line
fline = fp.readline().rstrip('\n')
spfline = fline.split(',')
keypress_pins=[]
for gpiopin in spfline:
keypress_pins.append(eval(gpiopin))
# reading KEYS config line
fline = fp.readline().rstrip('\n')
spfline = fline.split(',')
keys_pressed=[]
for keycode in spfline:
keys_pressed.append(eval(keycode))
# reading MODIF KEY config line
fline = fp.readline().rstrip('\n')
spfline = fline.split(',')
control_key=[]
for modifkey in spfline:
control_key.append(eval(modifkey))
fp.close()
else:
print("config file not found, loading defaults!")
keypress_pins = default_gpio
keys_pressed = default_keys
control_key = default_mod_keys
# For most CircuitPython boards:
led = digitalio.DigitalInOut(board.LED)
# For QT Py M0:
# led = digitalio.DigitalInOut(board.SCK)
led.direction = digitalio.Direction.OUTPUT
# Make all pin objects inputs with pullups
for pin in keypress_pins:
key_pin = digitalio.DigitalInOut(pin)
key_pin.direction = digitalio.Direction.INPUT
key_pin.pull = digitalio.Pull.UP
key_pin_array.append(key_pin)
key_pin_array_debounced.append(Debouncer(key_pin))
for key_conf in keypress_pins:
j = keypress_pins.index(key_conf)
print("GPIO,key,modifier:", keypress_pins[j], keys_pressed[j],control_key[j])
print("Waiting for switches...")
while True:
# Check each pin
for key_pin_debounced in key_pin_array_debounced:
key_pin_debounced.update()
i = key_pin_array_debounced.index(key_pin_debounced)
if key_pin_debounced.fell:
print("Switch pressed.")
led.value = True
key = keys_pressed[i] # Get the corresponding Keycode or string
mod_key = control_key[i]
#control_key = control_key[i] # Get the corresponding Keycode or string
if isinstance(key, str): # If it's a string...
keyboard_layout.write(key) # ...Print the string
else: # If it's not a string...
if control_key[i] == None:
keyboard.press(key) # "Single Key"
else:
keyboard.press(mod_key, key) # "Key with modifier"...
if key_pin_debounced.rose:
print("Switch released")
led.value = False
keyboard.release_all() # ..."Release"!
time.sleep(0.01)