From 51e723e688a4bdead12bb56d5e6dc59c5d5aef88 Mon Sep 17 00:00:00 2001 From: Ben Connors Date: Wed, 30 Oct 2019 21:29:03 -0400 Subject: Implement most of run mode - Audio doesn't play the past the first time - Advance is a bit late --- interface/channelbank.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'interface/channelbank.py') diff --git a/interface/channelbank.py b/interface/channelbank.py index 2ca964e..6562a9c 100755 --- a/interface/channelbank.py +++ b/interface/channelbank.py @@ -158,6 +158,8 @@ class ChannelBank: self._cv[c].held = v def set_values(self, cv): + if isinstance(cv, dict): + cv = cv.items() for c, v in cv: self._cv[c].value = v -- cgit v1.2.3