-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPCPanel.py
156 lines (129 loc) · 4.03 KB
/
PCPanel.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import hid
import pactl
from collections import defaultdict
class PCPanel:
def __init__(self, inputs = {}):
self.pcpanel = hid.device()
self.pcpanel.open(0x0483,0xa3c5)
self.pcpanel.set_nonblocking(1)
self.K1 = input(*inputs.get('K1', None))
self.B1 = input(*inputs.get('B1', None))
self.K2 = input(*inputs.get('K2', None))
self.B2 = input(*inputs.get('B2', None))
self.K3 = input(*inputs.get('K3', None))
self.B3 = input(*inputs.get('B3', None))
self.K4 = input(*inputs.get('K4', None))
self.B4 = input(*inputs.get('B4', None))
self.K5 = input(*inputs.get('K5', None))
self.B5 = input(*inputs.get('B5', None))
self.S1 = input(*inputs.get('S1', None))
self.S2 = input(*inputs.get('S2', None))
self.S3 = input(*inputs.get('S3', None))
self.S4 = input(*inputs.get('S4', None))
self.widgets = {
1: {0: self.K1,
1: self.K2,
2: self.K3,
3: self.K4,
4: self.K5,
5: self.S1,
6: self.S2,
7: self.S3,
8: self.S4,
},
2: {0: self.B1,
1: self.B2,
2: self.B3,
3: self.B4,
4: self.B5}
}
def __del__(self):
self.pcpanel.close()
def _data(self):
data = []
try:
data = self.pcpanel.read(3,250)
except IOError as ex:
print(ex)
return data
def loop(self):
data = self._data()
if not data:
return
try:
if (data[0] == 1): # slider/knob
self.widgets.get(1).get(data[1]).adjust(data[2])
elif (data[0] == 2): # button
self.widgets.get(2).get(data[1]).press(data[2])
except TypeError as ex:
raise
class input:
"""
TODO
- auto release (unmute after 10 sec, etc)
"""
def __init__(self, apps = [], devs = [], active = False, default_sink = False, default_source = False):
self.apps = apps
self.devs = devs
self.active = active
self.min = 0
self.max = 100
self.log = False
self.default_sink = default_sink
self.default_source = default_source
def loop_apps(self, val):
try:
for app in self.apps:
for iden in pactl.dict_apps().get(app):
pactl.sink_input_vol(iden, val)
except KeyError:
pass
except TypeError:
pass
def loop_devs(self, val):
try:
for dev in self.devs:
pass
except KeyError:
raise
except TypeError:
pass
def loop_apps_mute(self, action = 'toggle'):
try:
for app in self.apps:
for iden in pactl.dict_apps().get(app):
pactl.sink_input_mute(iden, action)
except KeyError:
pass
except TypeError:
pass
def loop_devs_mute(self, action = 'toggle'):
try:
for app in self.devs:
pass
except KeyError:
pass
except TypeError:
pass
def adjust(self, val):
if self.log:
# do things to val
pass
else:
val = int(val/255*100)
if self.active:
pactl.active_sink_input_vol(val)
self.loop_apps(val)
self.loop_devs(val)
def press(self, state, last_pressed = False):
if state:
self.loop_apps_mute()
self.loop_devs_mute()
if self.default_sink:
pactl.sink_default_mute()
if self.default_source:
pactl.source_default_mute()
def double_press(self):
pass
def hold(self):
pass