From e46a34b46bf86e485d64984071409824dad6d2dc Mon Sep 17 00:00:00 2001 From: chopster44 Date: Wed, 17 Dec 2025 22:50:37 +0000 Subject: [PATCH] Different blink rate for demonstration --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ec1ee09..efaecfa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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(); -} \ No newline at end of file +}