diff options
author | Ben Connors <benconnors@outlook.com> | 2019-10-30 21:29:03 -0400 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-10-30 21:29:03 -0400 |
commit | 51e723e688a4bdead12bb56d5e6dc59c5d5aef88 (patch) | |
tree | dda6436e26da47248803685fcd285e8eef2b4344 /interface/channelbank.py | |
parent | 2ffa83443b2333bef73f391517767259ad033495 (diff) |
Implement most of run mode
- Audio doesn't play the past the first time
- Advance is a bit late
Diffstat (limited to 'interface/channelbank.py')
-rwxr-xr-x | interface/channelbank.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |