I have some problems with the library when using my esp32 board. It gives me an error in #include <avr\pgmspace.h> and #include <util/delay.h>, "not such file or directory". If I replace with #include <pgmspace.h> and #define _delay_ms(ms) delayMicroseconds((ms) * 1000) it compiles but I get no admittance values.
The libraries and the example code work correctly with the Arduino UNO boards.
Could you guide me to know what could be the error?
I have some problems with the library when using my esp32 board. It gives me an error in #include <avr\pgmspace.h> and #include <util/delay.h>, "not such file or directory". If I replace with #include <pgmspace.h> and #define _delay_ms(ms) delayMicroseconds((ms) * 1000) it compiles but I get no admittance values.
The libraries and the example code work correctly with the Arduino UNO boards.
Could you guide me to know what could be the error?