1 Commits
1.0.4 ... 1.0.5

Author SHA1 Message Date
e46a34b46b Different blink rate for demonstration 2025-12-17 22:50:37 +00:00

View File

@@ -6,7 +6,7 @@
#include "pins.h"
#define BLINKRATE 500
#define BLINKRATE 2000
#define BLE_SERVER_NAME "Software Release"
unsigned long lastBlink = 0;
@@ -40,7 +40,7 @@ void setup() {
pServer = BLEDevice::createServer();
pServer->setCallbacks(new ServerCallbacks());
BLEota.begin(pServer, "1.0.4");
BLEota.begin(pServer, "1.0.5");
BLEAdvertising* pAdvertising = BLEDevice::getAdvertising();
pAdvertising->setScanResponse(true);
@@ -59,4 +59,4 @@ void loop() {
lastBlink= millis();
}
BLEota.loop();
}
}