jvpernis / esp32-ps3

Control your ESP32 projects with a PS3 controller!
298 stars 81 forks source link

Ps3 controller could not connect with esp32 MAC address. ASSERT_WARN #35

Closed yikaus closed 3 years ago

yikaus commented 3 years ago

Thanks for implement the lib for doing ps3 controller connection.

However I am encountering an issue of not able to connect. I 've followed instruction reset ps3 console mac stored in controller

tried both on SixaxisPairTool or sixaxispairer , then boot esp with below code . leave begin without MAC so it use esp32 default MAC which is 3c:61:05:32:1e:22

include

void setup()
{
    Serial.begin(115200);
    Ps3.begin();
    Serial.println("Ready.");
}

void loop()
{
  if (Ps3.isConnected()){
    Serial.println("Connected!");
  }

  String address = Ps3.getAddress();
    Serial.println(address);

  delay(2000);
}

From the COM log , I could only see ASSERT_WARN(1 9), in lc_task.c at line 13943c:61:05:32:1e:22 but no connection.

Can you advise some way for me to troubleshot it further ?

Thanks

yikaus commented 3 years ago

Issue turns out a hardware connectivity issue (not genuine Sony). sorry about the confuse.