The module can't connect to ps3
On older versions of esp32 the library worked
No esp32 reports any error and can't connect to the ps3 pad
Code: Select all
#include <Ps3Controller.h>
void setup()
{
Serial.begin(115200);
Ps3.begin("f0:f0:02:4c:ac:3b");
Serial.println("Ready.");
}
void loop()
{
if (Ps3.isConnected()){
Serial.println("Connected!");
}
delay(1000);
}