mirror of
https://github.com/meshtastic/firmware.git
synced 2025-05-04 12:55:08 +00:00
16 lines
319 B
C++
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;
|