Control Surface  1.1.0
MIDI Control Surface library for Arduino
ManyAddresses/CCButton.hpp
Go to the documentation of this file.
1 #pragma once
2 
6 
8 namespace Bankable {
9 namespace ManyAddresses {
10 
11 /**
12  * @brief A class of MIDIOutputElement%s that read the input of a **momentary
13  * push button or switch**, and send out MIDI **Control Change**
14  * events.
15  *
16  * A value of 0x7F is sent when the button is pressed, and a value of
17  * 0x00 is sent when the button is released.
18  * The button is debounced in software.
19  * This version can be banked using an arbitrary list of alternative
20  * addresses.
21  *
22  * @tparam N
23  * The number of variants/alternative addresses the element has.
24  *
25  * @ingroup ManyAddressesMIDIOutputElements
26  */
27 template <setting_t N>
28 class CCButton
29  : public Bankable::MIDIButton<ManyAddresses<N>, DigitalCCSender> {
30  public:
31  /**
32  * @brief Create a new Bankable CCButton object with the given bank
33  * configuration, button pin, and address.
34  *
35  * @param bank
36  * The bank that selects the address to use.
37  * @param pin
38  * The digital input pin with the button connected.
39  * The internal pull-up resistor will be enabled.
40  * @param addresses
41  * The list of MIDI addresses containing the controller number
42  * [0, 119], channel [CHANNEL_1, CHANNEL_16], and optional cable
43  * number [0, 15].
44  * @param sender
45  * The MIDI sender to use.
46  *
47  * @ingroup MIDIOutputElementConstructors
48  */
49  CCButton(const Bank<N> &bank, pin_t pin,
50  const Array<MIDICNChannelAddress, N> &addresses,
51  const DigitalCCSender &sender = {})
53  {bank, addresses}, pin, sender} {}
54 };
55 
56 } // namespace ManyAddresses
57 } // namespace Bankable
58 
MIDIButton.hpp
Bank
A class that groups Bankable BankableMIDIOutputs and BankableMIDIInputs, and allows the user to chang...
Definition: Bank.hpp:77
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< N >
DigitalCCSender.hpp
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
DigitalCCSender
Definition: DigitalCCSender.hpp:7
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
AH::pin_t
uint16_t pin_t
The type for Arduino pins (and ExtendedIOElement pins).
Definition: Hardware-Types.hpp:17
Bankable::MIDIButton< ManyAddresses< N >, DigitalCCSender >::sender
DigitalCCSender sender
Definition: Bankable/Abstract/MIDIButton.hpp:59
Bankable::ManyAddresses::CCButton
A class of MIDIOutputElements that read the input of a momentary push button or switch,...
Definition: ManyAddresses/CCButton.hpp:28
Bankable::ManyAddresses::CCButton::CCButton
CCButton(const Bank< N > &bank, pin_t pin, const Array< MIDICNChannelAddress, N > &addresses, const DigitalCCSender &sender={})
Create a new Bankable CCButton object with the given bank configuration, button pin,...
Definition: ManyAddresses/CCButton.hpp:49