#include <MIDI_Outputs/NoteButton.hpp>
A class of MIDIOutputElements that read the input of a momentary push button or switch, and send out MIDI Note events.
A Note On event is sent when the button is pressed, and a Note Off event is sent when the button is released.
The button is debounced in software.
This version cannot be banked.
- Examples
- AppleMIDI.ino, Debug-MIDI-Interface.ino, NoteButton.ino, and Serial-Interface.ino.
Definition at line 19 of file NoteButton.hpp.
|
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...
|
|
|
Updatable< NormalUpdatable > * | next |
|
Updatable< NormalUpdatable > * | previous |
|
◆ NoteButton()
Create a new NoteButton object with the given pin, note number and channel.
- Parameters
-
pin | The digital input pin to read from.
The internal pull-up resistor will be enabled. |
address | The MIDI address containing the note number [0, 127], channel [CHANNEL_1, CHANNEL_16], and optional cable number [CABLE_1, CABLE_16]. |
velocity | The velocity of the MIDI Note events. |
Definition at line 35 of file NoteButton.hpp.
◆ setVelocity()
void setVelocity |
( |
uint8_t |
velocity | ) |
|
|
inline |
Set the velocity of the MIDI Note events.
Definition at line 43 of file NoteButton.hpp.
◆ getVelocity()
uint8_t getVelocity |
( |
| ) |
const |
|
inline |
Get the velocity of the MIDI Note events.
Definition at line 45 of file NoteButton.hpp.
◆ begin()
|
inlineoverridevirtualinherited |
◆ update()
|
inlineoverridevirtualinherited |
◆ invert()
◆ getButtonState()
◆ getAddress()
◆ setAddressUnsafe()
Set the MIDI address.
Has unexpected consequences if used while the push button is pressed. Use banks if you need to support that.
Definition at line 52 of file Abstract/MIDIButton.hpp.
◆ beginAll()
◆ updateAll()
static void updateAll |
( |
| ) |
|
|
inlinestaticinherited |
◆ enable() [1/4]
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 100 of file Updatable.hpp.
◆ enable() [2/4]
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 129 of file Updatable.hpp.
◆ enable() [3/4]
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 131 of file Updatable.hpp.
◆ enable() [4/4]
static void enable |
( |
U(&) |
array[N] | ) |
|
|
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.
◆ disable() [1/4]
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.
◆ disable() [2/4]
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.
◆ disable() [3/4]
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.
◆ disable() [4/4]
static void disable |
( |
U(&) |
array[N] | ) |
|
|
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.
◆ isEnabled()
Check if this updatable is enabled.
- Note
- Assumes that the updatable is not added to a different linked list by the user.
Definition at line 124 of file Updatable.hpp.
◆ moveDown()
Move down this element in the list.
Definition at line 151 of file Updatable.hpp.
◆ button
◆ address
◆ sender
◆ updatables
◆ next
Updatable< NormalUpdatable > * next |
|
protectedinherited |
◆ previous
Updatable< NormalUpdatable > * previous |
|
protectedinherited |
The documentation for this class was generated from the following file: