I am trying to use the Adafruit_GC9A01A library with a RedBoard Artemis Nano. I am unable to compile because I get a
fatal error: pins_arduino.h: No such file or directory
#include “pins_arduino.h”
Any ideas?
I am trying to use the Adafruit_GC9A01A library with a RedBoard Artemis Nano. I am unable to compile because I get a
fatal error: pins_arduino.h: No such file or directory
#include “pins_arduino.h”
Any ideas?
Including the pins_arduino.h and wiring_private.h do not seem to be needed in Adafruit_GC9A01A.cpp comment out line 36 and 38
#ifndef ARDUINO_STM32_FEATHER
//#include "pins_arduino.h"
#ifndef RASPI
//#include "wiring_private.h"
#endif
#endif
It seems to load now, Testing the display now. Thank you!