2 Commits

Author SHA1 Message Date
3e8efa1934 v1.0.3 placholder for testing 2025-11-29 23:06:12 +00:00
fcc77531d0 v1.0.2 with file transfer 2025-11-29 23:05:52 +00:00
2 changed files with 3 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ void setup() {
pServer = BLEDevice::createServer();
pServer->setCallbacks(new ServerCallbacks());
BLEota.begin(pServer);
BLEota.begin(pServer, "1.0.3");
BLEAdvertising* pAdvertising = BLEDevice::getAdvertising();
pAdvertising->setScanResponse(true);
@@ -59,4 +59,5 @@ void loop() {
digitalWrite(LED, !digitalRead(LED));
lastBlink= millis();
}
BLEota.loop();
}