pubsubclient/AAL/Arduino.h

25 lines
430 B
C
Raw Permalink Normal View History

#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>
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)
#endif // _ARDUINO_H_