You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
342 B
19 lines
342 B
#pragma once
|
|
#include <Arduino.h>
|
|
|
|
class TestMode_ {
|
|
public:
|
|
TestMode_(void);
|
|
void setup();
|
|
|
|
void TestLEDs();
|
|
void TestKeys();
|
|
void TestMatrix();
|
|
void TestOneKey();
|
|
private:
|
|
};
|
|
|
|
extern TestMode_ TestMode;
|
|
|
|
bool handle_key_event_test(Key mappedKey, byte row, byte col, uint8_t currentState, uint8_t previousState);
|