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

17 lines
459 B
C
Raw Normal View History

2016-05-09 14:05:08 +00:00
#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