Luke

Results 2 comments of Luke

I changed ``` def handle_midi_input(self, message, deviceID, deviceName): self.log.debug("Received %s %s %s %s %s", str(message), "from device", deviceID, "/", deviceName) if message.type == "note_on": return self.handle_midi_button(deviceID, message.channel, message.type, message.note) ```...

Well, that's what's working for me, and at least there's enough information here for others who need that functionality to implement it, and get running. Might need to add a...