Hello !!!
The following program allows the PS3 to connect to my older esp32 32S module, However with the new esp32 module (writing on the back of DevKit V1) esp(FCC ID:2AC7Z-ESPWROOM32) the PS3 pad cannot connect
Does any of my colleagues have any ideas?
BT works on the module
The following program allows the PS3 to connect to my older esp32 32S module, However with the new esp32 module (writing on the back of DevKit V1) esp(FCC ID:2AC7Z-ESPWROOM32) the PS3 pad cannot connect
Does any of my colleagues have any ideas?
BT works on the module
#include <Ps3Controller.h>
void setup()
{
Serial.begin(115200);
Ps3.begin("F0:F0:02:4C:AC:3B");
delay(500);
Serial.println("Ready.");
}
void loop()
{
if (Ps3.isConnected()){
Serial.println("Connected!");
}
delay(3000);
}