meshtastic-firmware/src/input/UpDownInterruptImpl1.h

15 wiersze
315 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;