RAK Rotary and simple up/down/press button support for Canned Messages

This commit is contained in:
Thomas Göttgens
2022-03-26 17:45:42 +01:00
parent 74d987b24c
commit 0058382e85
5 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#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;