Control Surface  1.1.1
MIDI Control Surface library for Arduino
ManyAddresses/NoteButton.hpp
Go to the documentation of this file.
1 #pragma once
2 
6 
8 namespace Bankable {
9 namespace ManyAddresses {
10 
26 template <setting_t N>
28  : public Bankable::MIDIButton<ManyAddresses<N>, DigitalNoteSender> {
29  public:
48  NoteButton(const Bank<N> &bank, pin_t pin,
49  const Array<MIDICNChannelAddress, N> &addresses,
50  uint8_t velocity = 0x7F)
52  {bank, addresses}, pin, {velocity}} {}
53 };
54 
55 } // namespace ManyAddresses
56 } // namespace Bankable
57 
MIDIButton.hpp
Bank
A class that groups Bankable BankableMIDIOutputs and BankableMIDIInputs, and allows the user to chang...
Definition: Bank.hpp:77
Bankable::ManyAddresses::NoteButton::NoteButton
NoteButton(const Bank< N > &bank, pin_t pin, const Array< MIDICNChannelAddress, N > &addresses, uint8_t velocity=0x7F)
Create a new Bankable NoteButton object with the given bank configuration, button pin,...
Definition: ManyAddresses/NoteButton.hpp:48
Bankable
A namespace for MIDI elements that can be added to a Bank, to change their address or channel.
Definition: BankAddresses.hpp:7
Bankable::ManyAddresses::ManyAddresses
Definition: BankAddresses.hpp:72
AH::pin_t
uint16_t pin_t
The type for Arduino pins (and ExtendedIOElement pins).
Definition: Hardware-Types.hpp:17
Bankable::ManyAddresses::NoteButton
A class of MIDIOutputElements that read the input of a momentary push button or switch,...
Definition: ManyAddresses/NoteButton.hpp:27
BEGIN_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Definition: Settings/NamespaceSettings.hpp:9
Bankable::MIDIButton
An abstract class for momentary push buttons that send MIDI events.
Definition: Bankable/Abstract/MIDIButton.hpp:20
BankAddresses.hpp
END_CS_NAMESPACE
#define END_CS_NAMESPACE
Definition: Settings/NamespaceSettings.hpp:10
AH::Array
An array wrapper for easy copying, comparing, and iterating.
Definition: Array.hpp:36
DigitalNoteSender.hpp
DigitalNoteSender
Definition: DigitalNoteSender.hpp:7