#include <MIDI_Outputs/Bankable/NoteButtons.hpp>
A class of MIDIOutputElements that read the input of a collection of momentary push buttons or switches, and send out MIDI Note events.
A Note On event is sent when a button is pressed, and a Note Off event is sent when a button is released.
The buttons are debounced in software.
This version can be banked.
NumButtons | The number of buttons in the collection. |
Definition at line 27 of file Bankable/NoteButtons.hpp.
Enabling and disabling updatables | |
void | enable () |
Enable this updatable: insert it into the linked list of instances, so it 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 |
Check if this updatable is enabled. 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... | |
Public Member Functions | |
NoteButtons (OutputBankConfig<> config, const Array< AH::Button, NumButtons > &buttons, MIDIAddress baseAddress, RelativeMIDIAddress incrementAddress, uint8_t velocity=0x7F) | |
Create a new Bankable NoteButtons object with the given pins, the given controller number and channel. More... | |
void | setVelocity (uint8_t velocity) |
Set the velocity of the MIDI Note events. More... | |
uint8_t | getVelocity () const |
Get the velocity of the MIDI Note events. More... | |
void | begin () final override |
Initialize this updatable. More... | |
void | update () final override |
Update this updatable. More... | |
void | invert () |
AH::Button::State | getButtonState (size_t index) const |
Public Attributes | |
DigitalNoteSender | sender |
Protected Attributes | |
SingleAddress | address |
Array< AH::Button, NumButtons > | buttons |
RelativeMIDIAddress | incrementAddress |
uint8_t | activeButtons |
Updatable< NormalUpdatable > * | next |
Updatable< NormalUpdatable > * | previous |
Static Protected Attributes | |
static DoublyLinkedList< Updatable< NormalUpdatable > > | updatables |
|
inline |
Create a new Bankable NoteButtons object with the given pins, the given controller number and channel.
config | The bank configuration to use: the bank to add this element to, and whether to change the address, channel or cable number. |
buttons | A list of digital input pins with the buttons connected. The internal pull-up resistors will be enabled. |
baseAddress | The MIDI address of the first button, containing the note number [0, 127], channel [CHANNEL_1, CHANNEL_16], and optional cable number [CABLE_1, CABLE_16]. |
incrementAddress | The number of addresses to increment for each next button. E.g. if baseAddress is 8, and incrementAddress is 2, then the first button will send on address 8, the second button will send on address 10, button three on address 12, etc. |
velocity | The velocity of the MIDI Note events. |
Definition at line 52 of file Bankable/NoteButtons.hpp.
|
inline |
Set the velocity of the MIDI Note events.
Definition at line 64 of file Bankable/NoteButtons.hpp.
|
inline |
Get the velocity of the MIDI Note events.
Definition at line 66 of file Bankable/NoteButtons.hpp.
|
inlinefinaloverridevirtualinherited |
Initialize this updatable.
Implements Updatable< T >.
Definition at line 37 of file Bankable/Abstract/MIDIButtons.hpp.
|
inlinefinaloverridevirtualinherited |
Update this updatable.
Implements Updatable< T >.
Definition at line 41 of file Bankable/Abstract/MIDIButtons.hpp.
|
inlineinherited |
Definition at line 63 of file Bankable/Abstract/MIDIButtons.hpp.
|
inlineinherited |
Definition at line 68 of file Bankable/Abstract/MIDIButtons.hpp.
|
inlinestaticinherited |
Begin all enabled instances of this class.
Definition at line 186 of file Updatable.hpp.
|
inlinestaticinherited |
Update all enabled instances of this class.
Definition at line 190 of file Updatable.hpp.
|
inlineinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 100 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 129 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 131 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 134 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 110 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 140 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 142 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 145 of file Updatable.hpp.
|
inlineinherited |
Check if this updatable is enabled.
Definition at line 124 of file Updatable.hpp.
|
inlineinherited |
Move down this element in the list.
Definition at line 151 of file Updatable.hpp.
|
protectedinherited |
Definition at line 73 of file Bankable/Abstract/MIDIButtons.hpp.
|
protectedinherited |
Definition at line 74 of file Bankable/Abstract/MIDIButtons.hpp.
|
protectedinherited |
Definition at line 75 of file Bankable/Abstract/MIDIButtons.hpp.
|
protectedinherited |
Definition at line 76 of file Bankable/Abstract/MIDIButtons.hpp.
|
inherited |
Definition at line 79 of file Bankable/Abstract/MIDIButtons.hpp.
|
staticprotectedinherited |
Definition at line 156 of file Updatable.hpp.
|
protectedinherited |
Definition at line 324 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 325 of file LinkedList.hpp.