Control Surface main
MIDI Control Surface library for Arduino
Loading...
Searching...
No Matches
ManyAddresses/NoteButton.hpp
Go to the documentation of this file.
1#pragma once
2
6
8namespace Bankable {
9namespace ManyAddresses {
10
26template <setting_t NumBanks>
28 : public Bankable::MIDIButton<ManyAddresses<NumBanks>, DigitalNoteSender> {
29 public:
46 NoteButton(const Bank<NumBanks> &bank, pin_t pin,
47 const Array<MIDIAddress, NumBanks> &addresses,
48 uint8_t velocity = 0x7F)
50 {bank, addresses}, pin, {velocity}} {}
51};
52
53} // namespace ManyAddresses
54} // namespace Bankable
55
#define END_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
An abstract class for momentary push buttons that send MIDI events.
A class of MIDIOutputElements that read the input of a momentary push button or switch,...
NoteButton(const Bank< NumBanks > &bank, pin_t pin, const Array< MIDIAddress, NumBanks > &addresses, uint8_t velocity=0x7F)
Create a new Bankable NoteButton object with the given bank configuration, button pin,...
Class that sends MIDI note on and off messages.
A namespace for MIDI elements that can be added to a Bank, to change their address or channel.
An array wrapper for easy copying, comparing, and iterating.
Definition Array.hpp:32