Page 1 of 1

not working Ps3Controller on esp32 DEVKITV1

Posted: Thu Jan 19, 2023 12:41 pm
by robo1973
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

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);
}

Re: not working Ps3Controller on esp32 DEVKITV1

Posted: Fri Jan 20, 2023 3:35 pm
by bidrohini
You can cross-check with this video: https://www.youtube.com/watch?v=YhFfrJv0UDo
It will help you figure out if you're missing something.

Re: not working Ps3Controller on esp32 DEVKITV1

Posted: Fri Jan 20, 2023 3:36 pm
by bidrohini
You can cross-check with this video: https://www.youtube.com/watch?v=YhFfrJv0UDo
It will help you figure out if you're missing something.