Control Surface stm32
MIDI Control Surface library for Arduino
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:
49 const Array<MIDIAddress, NumBanks> &addresses,
50 uint8_t velocity = 0x7F)
52 {bank, addresses}, pin, {velocity}} {}
53};
54
55} // namespace ManyAddresses
56} // namespace Bankable
57
#define END_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
A class that groups Bankable MIDI Output Elements and Bankable MIDI Input Elements,...
Definition: Bank.hpp:91
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.
uint16_t pin_t
The type for Arduino pins (and ExtendedIOElement pins).
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:36