18 lines
236 B
C++
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()
|
|
{
|
|
|
|
}
|