Arduino-PS2X
Arduino-PS2X copied to clipboard
Library does not work with ESP32 -> Solved
Replace all Lines in PS2X_lib.h and PS2X_lib.cpp with definition for ESP8266
#ifdef ESP8266
by this line:
#if defined (ESP8266) || defined(ESP32)
Works now great with ESP32. Thank you for this library!