Line data Source code
1 : /* ✔ */ 2 : 3 : #pragma once 4 : 5 : #include <MIDI_Outputs/Abstract/MIDIButtonLatched.hpp> 6 : #include <MIDI_Senders/DigitalCCSender.hpp> 7 : 8 : BEGIN_CS_NAMESPACE 9 : 10 : /** 11 : * @brief A class of MIDIOutputElement%s that read the input of a **momentary 12 : * push button or switch**, and send out MIDI **Controller 13 : * Change** events. 14 : * 15 : * It latches the input, so press once to enable, press again to 16 : * disable (toggle). 17 : * 18 : * The switch is debounced in software. 19 : * This version cannot be banked. 20 : * 21 : * @ingroup MIDIOutputElements 22 : */ 23 : class CCButtonLatched : public MIDIButtonLatched<DigitalCCSender> { 24 : public: 25 : /** 26 : * @brief Create a new CCButtonLatched object on the given pin and with 27 : * address. 28 : * 29 : * @param pin 30 : * The digital input pin to read from. 31 : * The internal pull-up resistor will be enabled. 32 : * @param address 33 : * The MIDI address containing the controller number [0, 119], 34 : * channel [Channel_1, Channel_16], and optional cable number 35 : * [Cable_1, Cable_16]. 36 : * @param sender 37 : * The MIDI sender to use. 38 : */ 39 1 : CCButtonLatched(pin_t pin, MIDIAddress address, 40 : const DigitalCCSender &sender = {}) 41 1 : : MIDIButtonLatched {pin, address, sender} {} 42 : }; 43 : 44 : END_CS_NAMESPACE