Skip to content

Instantly share code, notes, and snippets.

@Potewo
Created August 15, 2021 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Potewo/33e46e62350b3c82a4f0fb0038d07e5c to your computer and use it in GitHub Desktop.
Save Potewo/33e46e62350b3c82a4f0fb0038d07e5c to your computer and use it in GitHub Desktop.
ESP32 Bluetooth Serial Test
#include "Arduino.h"
#include "BluetoothSerial.h"
BluetoothSerial BTSerial;
void setup() {
BTSerial.begin("ESP33SerialTest");
}
void loop() {
BTSerial.println("Hello");
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment