From 8d5b663c785cabd0c80bae1580474ee61eb76792 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Wed, 12 Nov 2025 20:59:03 +0000 Subject: [PATCH] switch version number to read not notify --- src/BLEOTA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BLEOTA.cpp b/src/BLEOTA.cpp index 879918f..8e3ced1 100644 --- a/src/BLEOTA.cpp +++ b/src/BLEOTA.cpp @@ -1,7 +1,7 @@ #include "BLEOTA.h" BLEOTAClass::BLEOTAClass(){ - _pVersionNumber = new BLECharacteristic(VERSION_NUMBER_UUID, BLECharacteristic::PROPERTY_NOTIFY); + _pVersionNumber = new BLECharacteristic(VERSION_NUMBER_UUID, BLECharacteristic::PROPERTY_READ); _pVersionNumberDescriptor = new BLEDescriptor(VERSION_NUMBER_DESCRIPTOR_UUID); };