LCDGFX LCD display driver  2.0.1
This library is developed to control SSD1306/SSD1325/SSD1327/SSD1331/SSD1351/IL9163/PCD8554 RGB i2c/spi LED displays
Arduino.h
1 #ifndef _ARDUINO_H_
2 #define _ARDUINO_H_
3 
4 #define ARDUINO_FAKE
5 #if defined(__MINGW32__)
6 #include "../../mingw/io.h"
7 #include "../../Print_internal.h"
8 #else
9 #include "../../linux/io.h"
10 #include "../../Print_internal.h"
11 #endif
12 
13 #ifndef boolean
14  typedef uint8_t boolean;
15 #endif
16 
17 #endif
18