firmware/src/input/UpDownInterruptImpl1.h

16 lines
319 B
C++

#pragma once
#include "UpDownInterruptBase.h"
class UpDownInterruptImpl1 :
public UpDownInterruptBase
{
public:
UpDownInterruptImpl1();
void init();
static void handleIntDown();
static void handleIntUp();
static void handleIntPressed();
};
extern UpDownInterruptImpl1 *upDownInterruptImpl1;