-
Notifications
You must be signed in to change notification settings - Fork 2
/
keys.py
21 lines (19 loc) · 855 Bytes
/
keys.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def show():
print(" Entered Lilygo Keys Results")
print(" ------------------- -------")
print(" _- =")
print(" (+ [")
print(" +) ]")
print(" (- <")
print(" -) >")
print(" _# ^")
print(" _/ \\")
print(" -/ %")
print(" _! &")
print(" Speaker Key (left of enter) $")
print(" Track ball up up arrow")
print(" Track ball down down arrow")
print(" Track ball left left arrow")
print(" Track ball right right arrow")
show()
print('To re-display keys from repl type "keys.show()"')