16 lines
400 B
C++
16 lines
400 B
C++
#pragma once
|
|
|
|
#include <MIDI_Outputs/Abstract/MIDIButtonLatching.hpp>
|
|
#include <MIDI_Senders/DigitalCCSender.hpp>
|
|
|
|
BEGIN_CS_NAMESPACE
|
|
|
|
class CCButtonLatching : public MIDIButtonLatching<DigitalCCSender> {
|
|
public:
|
|
CCButtonLatching(pin_t pin, MIDIAddress address,
|
|
const DigitalCCSender &sender = {})
|
|
: MIDIButtonLatching(pin, address, sender) {}
|
|
};
|
|
|
|
END_CS_NAMESPACE
|