-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"avr/pgmspace.h: No such file or directory" on ESP8266. Patch inside. #5
Comments
Thanks a million brother. worked for me. |
it worked for me to, with MPU6050, thanks!! |
avr\pgmspace.h |
Hey. I have a problem with "\Arduino\libraries\ESP8266wifi-master/SerialESP8266wifi.h:27:26: fatal error: avr/pgmspace.h: No such file or directory" |
there 2 files with this line, I replaced in both and it compiled |
I'm using in my project libraries like this: <WiFi.h>, <WiFiClient.h> <WiFiServer.h> <WiFiUdp.h> "Wire.h" "Time.h" "DS1307RTC.h" "DHT.h" "OneWire.h" "DallasTemperature.h" "LiquidCrystal.h" "TimeLib.h" <SerialESP8266wifi.h> . I really really thanks for your answers |
every time you see a message "avr/pgmspace.h: No such file or directory" |
Sounded silly, but actually works @roboter 💯 |
i downloaded this file from here : |
In my case , I add following code in max6675.cpp. Now its working perfectly. #define _delay_ms(ms) delayMicroseconds((ms) * 1000) |
Install avr-libc. |
Hi!
I am using this library together with my NodeMCU and other ESP8266-12 modules.
But the library/compiler throws the following error: "fatal error: avr/pgmspace.h: No such file or directory".
I found the following solution:
In Sodaq_DS3231.cpp you have to replace
#include <avr\pgmspace.h>
with
This works fine for me.
The text was updated successfully, but these errors were encountered: