2020-11-11 19:52:21 +01:00
|
|
|
#ifndef _ARDUINO_H_
|
|
|
|
#define _ARDUINO_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2020-11-11 20:03:44 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <Print.h>
|
|
|
|
#include <IPAddress.h>
|
|
|
|
#include <Stream.h>
|
2020-11-12 12:29:42 +01:00
|
|
|
#include <Client.h>
|
|
|
|
#include <stubs.h>
|
|
|
|
|
2020-11-11 19:52:21 +01:00
|
|
|
|
|
|
|
typedef uint32_t millis_t;
|
|
|
|
typedef bool boolean;
|
|
|
|
|
|
|
|
|
|
|
|
millis_t millis();
|
2020-11-12 12:29:42 +01:00
|
|
|
void yield();
|
|
|
|
|
|
|
|
|
|
|
|
#define pgm_read_byte(addr) (*(const unsigned char *)(addr))
|
|
|
|
#define pgm_read_byte_near(addr) pgm_read_byte(addr)
|
2020-11-11 19:52:21 +01:00
|
|
|
|
|
|
|
#endif // _ARDUINO_H_
|