pgmspace.h location fix for ESP8266

This commit is contained in:
Tony DiCola 2015-07-07 22:21:50 -07:00
parent 3633b084cf
commit d9a85bc754
1 changed files with 3 additions and 1 deletions

View File

@ -31,8 +31,10 @@
#include "WProgram.h"
#endif
#ifdef __AVR__
#ifdef __AVR
#include <avr/pgmspace.h>
#elif defined(ESP8266)
#include <pgmspace.h>
#endif
#include <Adafruit_GFX.h>