Last Call! We pause shipping on Feb 14th. Order NOW to get your gear shipped before the holiday!
#include "BluetoothSerial.h"
BluetoothSerial SerialBT;
void setup() {
SerialBT.begin("ESP32");
}
SerialBT.println("Hello World");
#include "BluetoothSerial.h"
BluetoothSerial SerialBT;
void setup() {
SerialBT.begin("ESP32");
}
void loop() {
SerialBT.println("Hello World");
delay(1000);
}


