-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues_management.py
43 lines (38 loc) · 1.01 KB
/
values_management.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
import struct
# Values management
# Volumes, ch1-ch64
line = {}
main = {}
main["ch1"] = {}
main["ch1"]["volume"] = 0
main["ch2"] = {}
main["ch2"]["volume"] = 0
mono = {}
mono["ch1"] = {}
mono["ch1"]["volume"] = 0
for i in range(32):
channel = (i + 1)
line["ch" + str(channel)] = {}
line["ch" + str(channel)]["volume"] = 0
for j in range(16):
aux = (j + 1)
line["ch" + str(channel)]["aux" + str(aux)] = 0
def updateVolumes(data):
for i in range(67):
channel = (i + 1)
# Get the channel volume value
volume = data[(i*2):(i*2+2)]
# Convert it to floating point
volume = struct.unpack('<H', volume)
volume = float(int(volume[0])/65535.0)
volume = struct.pack("<f", volume)
#print("i: %s. Channel %s: %s. Hex: %s" % (i, str(channel), volume[0], volume.encode('hex')))
if (i < 32):
line["ch" + str(channel)]["volume"] = volume
if (i == 64):
main["ch1"]["volume"] = volume
if (i == 66):
mono["ch1"]["volume"] = volume
def getVolume(channel):
volume = line["ch" + channel]["volume"]
return volume