-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
64 lines (52 loc) · 2.11 KB
/
main.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
"""main.py provides a demo driver for using the Keystation32 class.
Copyright (C) 2018 Brad Null
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from keystation import Keystation32
import signal
import binascii
if __name__ == "__main__":
# Keep doing stuff while this flag is enabled
read_keys = True
def signal_handler(signum, frame):
"""Handle incoming signals by turning read_keys to false.
Args:
signum (int): The signal that was just received
frame (int): The frame for the signal
"""
global read_keys
read_keys = False
# Install typical signal handlers so we stop as expected
signal.signal(signal.SIGTERM, signal_handler)
signal.signal(signal.SIGINT, signal_handler)
def key_callback(note, vel):
"""Callback to use when a key is pressed on the keyboard
Args:
note (int): Integer indicating the key that was pressed
vel (int): Velocity of the key being pressed
"""
if vel == 0:
print("Released", end='')
else:
print("Pressed", end='')
print(" note", note, " at velocity", vel)
def button_callback(button):
"""Callback to use when a button is pressed on the keyboard"""
print("You pressed a button: ", binascii.hexlify(button))
# Create the keyboard and lets go!
keyboard = Keystation32()
keyboard.add_button_callback(button_callback)
keyboard.add_key_callback(key_callback)
keyboard.open()
while read_keys:
pass
keyboard.close()