parent
fa28748d9e
commit
2cd59048d1
@ -1,11 +1,18 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
class TestMode_ {
|
class TestMode_ {
|
||||||
public:
|
public:
|
||||||
|
TestMode_(void);
|
||||||
void start();
|
void setup();
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
void TestLEDs();
|
void TestLEDs();
|
||||||
void TestKeys();
|
void TestKeys();
|
||||||
|
void TestMatrix();
|
||||||
void TestOneKey();
|
void TestOneKey();
|
||||||
|
private:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern TestMode_ TestMode;
|
||||||
|
|
||||||
|
bool handle_key_event_test(byte row, byte col, uint8_t currentState, uint8_t previousState);
|
||||||
|
Loading…
Reference in new issue