Skip to content

Commit 80b2a6f

Browse files
authored
fix(BLE): fixes the UUIDs used in the example
Fixes the UUIDs to used the ame as in BLE Client example. Makes sure that all examples use the same UUIDs.
1 parent cdca672 commit 80b2a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/BLE/examples/Notify/Notify.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ uint32_t value = 0;
3636
// See the following for generating UUIDs:
3737
// https://www.uuidgenerator.net/
3838

39-
#define SERVICE_UUID "0000ff00-0000-1000-8000-00805f9b34fb"
40-
#define CHARACTERISTIC_UUID "0000ff01-0000-1000-8000-00805f9b34fb"
39+
#define SERVICE_UUID "4fafc201-1fb5-459e-8fcc-c5c9c331914b"
40+
#define CHARACTERISTIC_UUID "beb5483e-36e1-4688-b7f5-ea07361b26a8"
4141

4242
class MyServerCallbacks : public BLEServerCallbacks {
4343
void onConnect(BLEServer *pServer) {

0 commit comments

Comments
 (0)