mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-31 15:10:40 +00:00
17 lines
400 B
C
17 lines
400 B
C
|
|
#pragma once
|
||
|
|
#include "TrackballInterruptBase.h"
|
||
|
|
|
||
|
|
class TrackballInterruptImpl1 : public TrackballInterruptBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
TrackballInterruptImpl1();
|
||
|
|
void init();
|
||
|
|
static void handleIntDown();
|
||
|
|
static void handleIntUp();
|
||
|
|
static void handleIntLeft();
|
||
|
|
static void handleIntRight();
|
||
|
|
static void handleIntPressed();
|
||
|
|
};
|
||
|
|
|
||
|
|
extern TrackballInterruptImpl1 *trackballInterruptImpl1;
|