Files
firmware/src/input/UpDownInterruptImpl1.h

14 lines
314 B
C
Raw Normal View History

#pragma once
#include "UpDownInterruptBase.h"
2023-01-21 14:34:29 +01:00
class UpDownInterruptImpl1 : public UpDownInterruptBase
{
public:
UpDownInterruptImpl1();
bool init();
static void handleIntDown();
static void handleIntUp();
static void handleIntPressed();
};
extern UpDownInterruptImpl1 *upDownInterruptImpl1;