diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 13:49:38 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 13:49:38 +0100 |
commit | edb2ffc66231702c931429ab44ad5009abb8c128 (patch) | |
tree | 6b1ad17f45aaf35a8cf0f3cedf03ac71c6611d6c /notifier.py | |
parent | 67f07cf01155b98321f590e3c18e378018c0a624 (diff) |
Added proper volume and playback rate feedback, changed volume steps in MIDI interface
Diffstat (limited to 'notifier.py')
-rw-r--r-- | notifier.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/notifier.py b/notifier.py index e052b5c..42ab529 100644 --- a/notifier.py +++ b/notifier.py @@ -1,6 +1,8 @@ class Notifier: PLAYING_STATE_EVENT = 0 + PLAYBACK_VOLUME_EVENT = 1 + PLAYBACK_RATE_EVENT = 2 def __init__(self, player): self._callbacks = dict() |