mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-29 22:20:37 +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;
|