diff options
| author | Eddy Pedroni <eddy@0xf7.com> | 2022-02-03 20:20:30 +0100 |
|---|---|---|
| committer | Eddy Pedroni <eddy@0xf7.com> | 2022-02-03 20:20:30 +0100 |
| commit | b609b4ce55104c77a3f69366874a3e25e3061172 (patch) | |
| tree | db0095a810acc63d34e1719f59fca668fa693bf0 /abcontroller.py | |
| parent | 6debe39546e62d5796f22db2388341ae9132042d (diff) | |
Added AB toggle button to MIDI interface
Diffstat (limited to 'abcontroller.py')
| -rw-r--r-- | abcontroller.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/abcontroller.py b/abcontroller.py index 99bd9d7..cec9fb2 100644 --- a/abcontroller.py +++ b/abcontroller.py @@ -66,6 +66,9 @@ class ABController: def setEnable(self, enable): self._enabled = enable + def isEnabled(self): + return self._enabled + def getStoredLimits(self, song): return self._limits.get(song) |
