Redis publish bugfix

This commit is contained in:
sam 2021-04-10 15:21:26 +02:00
parent 11ee70adcc
commit ba927a9ab4
3 changed files with 11 additions and 61 deletions

View file

@ -395,7 +395,8 @@ def MidinProcess(inqueue, portname):
if MidiChannel == param["chanIN"] and param["CC"] == msg[1]:
#print(param["name"]+"/"+ str(msg[1])+"/"+str(msg[2]))
toKeyevent(param["name"]+"/"+ str(msg[1])+"/"+str(msg[2]))
SendOSC(param["name"],[msg[0]-175-1, msg[1], msg[2]])
toKeyevent(param["name"]+"/"+ str(MidiChannel)+"/"+str(msg[1])+"/"+str(msg[2]))
if msg[0] == TIMING_CLOCK: