Selector that listens for MIDI Program Change events on a given MIDI Channel, and uses the program number as its selection. This version displays the setting using LEDs. More...
#include <Selectors/LEDs/SelectorLEDs.hpp>
 Inheritance diagram for ProgramChangeSelectorLEDs< N >:
 Collaboration diagram for ProgramChangeSelectorLEDs< N >:Public Types | |
| using | Mutex = typename std::conditional< ThreadSafe, DefaultMutEx, EmptyMutex >::type | 
| using | LockGuard = typename std::conditional< ThreadSafe, DefaultLockGuard< Mutex >, EmptyLockGuard< Mutex > >::type | 
Public Member Functions | |
| ProgramChangeSelectorLEDs (Selectable< N > &selectable, const MIDIChannelCN &address, const PinList< N > &ledPins) | |
| void | begin () override | 
| Initialize the input element.  More... | |
| void | reset () override | 
| Reset the input element to its initial state.  More... | |
| bool | updateImpl (const ChannelMessageMatcher &midimsg, const MIDIAddress &target) override | 
| Update the internal state with the new MIDI message.  More... | |
| void | update () override | 
| Update this updatable.  More... | |
| virtual void | update () | 
| Update the value of the input element. Used for decaying VU meters etc.  More... | |
| void | set (setting_t newSetting) | 
| Select the given selection.  More... | |
| void | increment (Wrap wrap) | 
| Add one to the setting, wrap around or clamp, depending on the parameter, if the new setting would be out of range.  More... | |
| void | decrement (Wrap wrap) | 
| Subtract one from the setting, wrap around or clamp, depending on the parameter, if the new setting would be out of range.  More... | |
| setting_t | get () const | 
| Get the current selection/setting.  More... | |
| bool | updateWith (const ChannelMessageMatcher &midimsg) | 
| Receive a new MIDI message and update the internal state.  More... | |
Static Public Member Functions | |
| static void | beginAll () | 
| static void | updateAll () | 
| Update all MIDIInputElementPC elements.  More... | |
| static Mutex & | getMutex () | 
| static void | resetAll () | 
| Reset all MIDIInputElementPC elements to their initial state.  More... | |
| static void | updateAllWith (const ChannelMessageMatcher &midimsg) | 
| Update all MIDIInputElementPC elements with a new MIDI message.  More... | |
Public Attributes | |
| SelectorLEDsCallback< N > | callback | 
Protected Attributes | |
| setting_t | setting = 0 | 
| The selection of the selector.  More... | |
| Updatable< NormalUpdatable, false > * | next | 
| MIDIInputElementPC * | next | 
| Updatable< NormalUpdatable, false > * | previous | 
| MIDIInputElementPC * | previous | 
| const MIDIAddress | address | 
Static Protected Attributes | |
| static DoublyLinkedList< Updatable< NormalUpdatable, false > > | updatables | 
| static Mutex | mutex | 
Private Member Functions | |
| MIDIAddress | getTarget (const ChannelMessageMatcher &midimsg) const override | 
| Program Change doesn't have an address, so the target consists of just the channel and the cable number.  More... | |
| virtual bool | match (const MIDIAddress &target) const | 
| Check if the address of the incoming MIDI message matches an address of this element.  More... | |
Private Attributes | |
| Selectable< N > & | selectable | 
Static Private Attributes | |
| static DoublyLinkedList< MIDIInputElementPC > | elements | 
Main initialization and updating methods | |
| static void | applyToAll (const LockGuard &, void(Derived::*method)(Args &&...), Args &&... args) | 
| static void | applyToAll (void(Derived::*method)(Args &&...), Args &&... args) | 
Enabling and disabling updatables | |
| void | enable (const LockGuard &lock) | 
| Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.  More... | |
| void | enable () | 
| Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.  More... | |
| void | disable (const LockGuard &lock) | 
| Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.  More... | |
| void | disable () | 
| Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.  More... | |
| bool | isEnabled (const LockGuard &) const | 
| Check if this updatable is enabled.  More... | |
| bool | isEnabled () | 
| Check if this updatable is enabled.  More... | |
| void | moveDown (const LockGuard &) | 
| Move down this element in the list.  More... | |
| void | moveDown () | 
| Move down this element in the list.  More... | |
| static void | enable (UpdatableCRTP *element) | 
| Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.  More... | |
| static void | enable (UpdatableCRTP &element) | 
| Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.  More... | |
| static void | enable (U(&array)[N]) | 
| Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.  More... | |
| static void | disable (UpdatableCRTP *element) | 
| Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.  More... | |
| static void | disable (UpdatableCRTP &element) | 
| Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.  More... | |
| static void | disable (U(&array)[N]) | 
| Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.  More... | |
Main initialization and updating methods | |
| static void | beginAll () | 
| Begin all enabled instances of this class.  More... | |
| static void | updateAll () | 
| Update all enabled instances of this class.  More... | |
Selector that listens for MIDI Program Change events on a given MIDI Channel, and uses the program number as its selection. This version displays the setting using LEDs.
| N | The number of settings. The maximum program number is \( N - 1 \). | 
Definition at line 181 of file SelectorLEDs.hpp.
      
  | 
  inherited | 
Definition at line 36 of file Updatable.hpp.
      
  | 
  inherited | 
Definition at line 38 of file Updatable.hpp.
      
  | 
  inline | 
Definition at line 184 of file SelectorLEDs.hpp.
      
  | 
  inlineoverridevirtualinherited | 
Initialize the input element.
Reimplemented from MIDIInputElement.
Definition at line 18 of file ProgramChangeSelector.hpp.
      
  | 
  inlineoverridevirtualinherited | 
Reset the input element to its initial state.
Reimplemented from MIDIInputElement.
Definition at line 23 of file ProgramChangeSelector.hpp.
      
  | 
  inlineoverridevirtualinherited | 
Update the internal state with the new MIDI message.
Implements MIDIInputElement.
Definition at line 25 of file ProgramChangeSelector.hpp.
      
  | 
  inlineoverridevirtualinherited | 
      
  | 
  inlinevirtualinherited | 
Update the value of the input element. Used for decaying VU meters etc.
Reimplemented in VU_Base< NumValues, Callback >, VU_Base< NumBanks, VULEDsCallback< NumLEDs > >, VU_Base< NumBanks, VUEmptyCallback >, VU_Base< 1, VUEmptyCallback >, and VU_Base< 1, VULEDsCallback< NumLEDs > >.
Definition at line 36 of file MIDIInputElement.hpp.
      
  | 
  inlineinherited | 
Select the given selection.
| newSetting | The new setting to select [0, N-1]. | 
Definition at line 94 of file Selector.hpp.
      
  | 
  inlineinherited | 
Add one to the setting, wrap around or clamp, depending on the parameter, if the new setting would be out of range.
| wrap | Wrap or clamp if the new setting would be out of range. | 
Definition at line 110 of file Selector.hpp.
      
  | 
  inlineinherited | 
Subtract one from the setting, wrap around or clamp, depending on the parameter, if the new setting would be out of range.
| wrap | Wrap or clamp if the new setting would be out of range. | 
Definition at line 129 of file Selector.hpp.
      
  | 
  inlineinherited | 
Get the current selection/setting.
Definition at line 47 of file Selector.hpp.
      
  | 
  inlinestaticinherited | 
Begin all enabled instances of this class.
Definition at line 208 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Definition at line 42 of file MIDIInputElementPC.hpp.
      
  | 
  inlinestaticinherited | 
Update all enabled instances of this class.
Definition at line 212 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Update all MIDIInputElementPC elements.
Definition at line 63 of file MIDIInputElementPC.hpp.
      
  | 
  inlinestaticinherited | 
Definition at line 79 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Definition at line 85 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Definition at line 93 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 106 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 115 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 144 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 146 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 149 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 119 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 128 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 155 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 157 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 160 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Check if this updatable is enabled.
Definition at line 136 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Check if this updatable is enabled.
Definition at line 141 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Move down this element in the list.
Definition at line 166 of file Updatable.hpp.
      
  | 
  inlineinherited | 
Move down this element in the list.
Definition at line 168 of file Updatable.hpp.
      
  | 
  inlinestaticinherited | 
Reset all MIDIInputElementPC elements to their initial state.
Definition at line 54 of file MIDIInputElementPC.hpp.
      
  | 
  inlinestaticinherited | 
Update all MIDIInputElementPC elements with a new MIDI message.
Definition at line 75 of file MIDIInputElementPC.hpp.
      
  | 
  inlineoverrideprivatevirtualinherited | 
Program Change doesn't have an address, so the target consists of just the channel and the cable number.
Reimplemented from MIDIInputElement.
Definition at line 89 of file MIDIInputElementPC.hpp.
      
  | 
  inlineinherited | 
Receive a new MIDI message and update the internal state.
Definition at line 39 of file MIDIInputElement.hpp.
      
  | 
  inlineprivatevirtualinherited | 
Check if the address of the incoming MIDI message matches an address of this element.
Reimplemented in GenericNoteCCRange< MIDIInputElementCC, RangeLen, BankSize, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementNote, 1, BankSize, NoteCCLEDPWM< 1 > >, GenericNoteCCRange< MIDIInputElementNote, 1, BankSize, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, BankSize, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementCC, 1, BankSize, NoteCCLED< 1 > >, GenericNoteCCRange< MIDIInputElementCC, 1, BankSize, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementCC, RangeLen, BankSize, NoteCCLEDPWM< RangeLen > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, BankSize, NoteCCLED< RangeLen > >, GenericNoteCCRange< MIDIInputElementNote, 1, BankSize, NoteCCLEDBarCallback< NumLEDs > >, GenericNoteCCRange< MIDIInputElementCC, 1, BankSize, NoteCCLEDPWM< 1 > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, BankSize, NoteCCLEDPWM< RangeLen > >, GenericNoteCCRange< MIDIInputElementNote, 1, BankSize, NoteCCLED< 1 > >, GenericNoteCCRange< MIDIInputElementCC, 1, BankSize, NoteCCLEDBarCallback< NumLEDs > >, GenericNoteCCRange< MIDIInputElementCC, RangeLen, BankSize, NoteCCLED< RangeLen > >, GenericNoteCCRange< MIDIInputElementCC, 1, NoteCCLED< 1 > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementNote, 1, NoteCCLED< 1 > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, NoteCCLED< RangeLen > >, GenericNoteCCRange< MIDIInputElementCC, 1, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementNote, 1, NoteCCLEDPWM< 1 > >, GenericNoteCCRange< MIDIInputElementCC, 1, NoteCCLEDPWM< 1 > >, GenericNoteCCRange< MIDIInputElementCC, RangeLen, NoteCCLED< RangeLen > >, GenericNoteCCRange< MIDIInputElementNote, 1, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericNoteCCRange< MIDIInputElementCC, 1, NoteCCLEDBarCallback< NumLEDs > >, GenericNoteCCRange< MIDIInputElementNote, RangeLen, NoteCCLEDPWM< RangeLen > >, GenericNoteCCRange< MIDIInputElementNote, 1, NoteCCLEDBarCallback< NumLEDs > >, GenericNoteCCRange< MIDIInputElementCC, RangeLen, NoteCCLEDPWM< RangeLen > >, GenericNoteCCRange< MIDIInputElementCC, RangeLen, NoteCCFastLEDCallback< DefaultColorMapper > >, GenericVU< NumBanks, Callback >, GenericVU< NumBanks >, GenericVU< NumBanks, VULEDsCallback< NumLEDs > >, GenericVPotRing< NumBanks, Callback >, GenericVPotRing< NumBanks >, GenericVPotRing< NumBanks, VPotRingLEDsCallback >, SevenSegmentDisplay< LENGTH >, SevenSegmentDisplay< AssignmentDisplayLength >, and SevenSegmentDisplay< TimeDisplayLength >.
Definition at line 78 of file MIDIInputElement.hpp.
      
  | 
  privateinherited | 
Definition at line 142 of file Selector.hpp.
      
  | 
  inherited | 
Definition at line 145 of file Selector.hpp.
      
  | 
  protectedinherited | 
The selection of the selector.
It is saved in the selector as well as the selectable, because you need it in order to implement increment/decrement methods.
Definition at line 53 of file Selector.hpp.
      
  | 
  staticprotectedinherited | 
Definition at line 173 of file Updatable.hpp.
      
  | 
  staticprotectedinherited | 
Definition at line 174 of file Updatable.hpp.
      
  | 
  protectedinherited | 
Definition at line 323 of file LinkedList.hpp.
      
  | 
  protectedinherited | 
Definition at line 323 of file LinkedList.hpp.
      
  | 
  protectedinherited | 
Definition at line 324 of file LinkedList.hpp.
      
  | 
  protectedinherited | 
Definition at line 324 of file LinkedList.hpp.
      
  | 
  staticprivateinherited | 
Definition at line 108 of file MIDIInputElementPC.hpp.
      
  | 
  protectedinherited | 
Definition at line 83 of file MIDIInputElement.hpp.