Skip to content

Commit

Permalink
pgmspace.h location fix for ESP8266
Browse files Browse the repository at this point in the history
  • Loading branch information
tdicola committed Jul 8, 2015
1 parent 48be569 commit dffd75c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TouchScreen.cpp
Expand Up @@ -5,7 +5,11 @@

#include "pins_arduino.h"
#include "wiring_private.h"
#include <avr/pgmspace.h>
#ifdef __AVR
#include <avr/pgmspace.h>
#elif defined(ESP8266)
#include <pgmspace.h>
#endif
#include "TouchScreen.h"

// increase or decrease the touchscreen oversampling. This is a little different than you make think:
Expand Down

0 comments on commit dffd75c

Please sign in to comment.