not working Ps3Controller on esp32 DEVKITV1
Posted: Thu Jan 19, 2023 12:41 pm
Hello
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
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);
}