This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/INF/libraries/PS3_Controller_Host/examples/Ps3Address/Ps3Address.ino
danielvici123 b6eafc20e5 irgendwas
2025-01-22 10:10:30 +01:00

18 lines
236 B
C++

#include <Ps3Controller.h>
void setup()
{
Serial.begin(115200);
Ps3.begin();
String address = Ps3.getAddress();
Serial.print("The ESP32's Bluetooth MAC address is: ");
Serial.println(address);
}
void loop()
{
}