Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Debug.h
2016-07-21 03:31:36 -06:00

14 lines
374 B
C++

#ifndef DEBUG_H
#define DEBUG_H
#include <Arduino.h>
#include <LED.h>
class Debug
{
public:
void printMicrosecondsPerScan(); //print microseconds per scan every second
void printScansPerSecond(); //print scans per second every second
void wait_for_OS(LED& led, uint8_t seconds); //wait for OS to recongnize keyboard
};
#endif