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.
Kaleidoscope/src/TestMode.h

19 lines
327 B

#pragma once
#include <Arduino.h>
class TestMode_ {
8 years ago
public:
TestMode_(void);
void setup();
8 years ago
void TestLEDs();
void TestKeys();
void TestMatrix();
8 years ago
void TestOneKey();
private:
};
extern TestMode_ TestMode;
bool handle_key_event_test(byte row, byte col, uint8_t currentState, uint8_t previousState);