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-05-09 08:05:08 -06:00

17 lines
459 B
C++

#ifndef DEBUG_H
#define DEBUG_H
#include <Arduino.h>
class Debug
{
private:
unsigned long nextTime = 0;
unsigned int scanCount = 0;
public:
void print_free_RAM(); //print free SRAM, call this from setup()
void print_microseconds_per_scan(); //print microseconds per scan every second
void print_scans_per_second(); //print scans per second every second
};
#endif