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/examples/KeyboardioFirmware/TestMode.h

20 lines
331 B

#pragma once
#include <Arduino.h>
class TestMode_ {
public:
TestMode_(void);
void setup();
void loop();
private:
void TestLEDs();
void TestKeys();
void TestMatrix();
void TestOneKey();
};
extern TestMode_ TestMode;
Key handle_key_event_test(Key mappedKey, byte row, byte col, uint8_t keyState);