14 lines
176 B
C
14 lines
176 B
C
|
#ifndef _ARDUINO_H_
|
||
|
#define _ARDUINO_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
|
||
|
typedef uint32_t millis_t;
|
||
|
typedef bool boolean;
|
||
|
|
||
|
|
||
|
millis_t millis();
|
||
|
|
||
|
#endif // _ARDUINO_H_
|