Line data Source code
1 : #pragma once
2 :
3 : #include <Banks/BankAddresses.hpp>
4 : #include <MIDI_Outputs/Bankable/Abstract/MIDIButton.hpp>
5 : #include <MIDI_Senders/DigitalCCSender.hpp>
6 :
7 : BEGIN_CS_NAMESPACE
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 NumBanks
23 : * The number of variants/alternative addresses the element has.
24 : *
25 : * @ingroup ManyAddressesMIDIOutputElements
26 : */
27 : template <setting_t NumBanks>
28 : class CCButton
29 : : public Bankable::MIDIButton<ManyAddresses<NumBanks>, 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 [Cable_1, Cable_16].
44 : * @param sender
45 : * The MIDI sender to use.
46 : */
47 1 : CCButton(const Bank<NumBanks> &bank, pin_t pin,
48 : const Array<MIDIAddress, NumBanks> &addresses,
49 : const DigitalCCSender &sender = {})
50 : : MIDIButton<ManyAddresses<NumBanks>, DigitalCCSender> {
51 1 : {bank, addresses}, pin, sender} {}
52 : };
53 :
54 : } // namespace ManyAddresses
55 : } // namespace Bankable
56 :
57 : END_CS_NAMESPACE
|