Hi All.
I have an Argon working perfectly with the Adafruit OLED Wing, via the oled-wing-adafruit lib.
I added in the adafruit_seesaw library, and declared the object, no problem.
As per the example…
#define IRQ PIN 5
No problem.
BUT When I add in the line
int x = ss.analogRead(2);
the OLED wing stops working
Is the IRQ wrong for this device? In the example…
#if defined(ESP8266)
#define IRQ_PIN 2
#elif defined(ESP32)
#define IRQ_PIN 14
#elif defined(NRF52)
#define IRQ_PIN 27
#elif defined(TEENSYDUINO)
#define IRQ_PIN 8
#elif defined(ARDUINO_ARCH_WICED)
#define IRQ_PIN PC5
#else
#define IRQ_PIN 5
#endif