blob: 7d87f99142fdd7ad21e593450c02631ea0b8bf14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <stdint.h>
#ifdef ARDUINO
#define NO_DISPLAY
#endif
uint32_t now(); // get monotonic time in ms
extern int g_width;
extern int g_height;
extern int g_harfe_connected;
extern int g_harfe_fd;
|