Skip to content

Commit 940374f

Browse files
hbisbysandeepmistry
authored andcommitted
changed format of long UUIDs
1 parent 3d3f973 commit 940374f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libraries/CurieBle/examples/ButtonLED/buttonLED.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ const int ledPin = 13; // set ledPin to on-board LED
2424
const int buttonPin = 4; // set buttonPin to digital pin 4
2525

2626
BlePeripheral blePeripheral; // create peripheral instance
27-
BleService ledService("19b10010e8f2537e4f6cd104768a1214"); // create service
27+
BleService ledService("19B10010-E8F2-537E-4F6C-D104768A1214"); // create service
2828

2929

3030
// create switch characteristic and allow remote device to read and write
31-
BleCharCharacteristic switchCharacteristic("19b10011e8f2537e4f6cd104768a1214", BleRead | BleWrite);
31+
BleCharCharacteristic switchCharacteristic("19B10011-E8F2-537E-4F6C-D104768A1214", BleRead | BleWrite);
3232
// create button characteristic and allow remote device to get notifications
33-
BleCharCharacteristic buttonCharacteristic("19b10012e8f2537e4f6cd104768a1214", BleRead | BleNotify); // allows remote device to get notifications
33+
BleCharCharacteristic buttonCharacteristic("19B10012-E8F2-537E-4F6C-D104768A1214", BleRead | BleNotify); // allows remote device to get notifications
3434

3535
void setup() {
3636
Serial.begin(9600);

libraries/CurieBle/examples/CallbackLED/CallbackLED.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
const int ledPin = 13; // set ledPin to use on-board LED
2424
BlePeripheral blePeripheral; // create peripheral instance
2525

26-
BleService ledService("19b10000e8f2537e4f6cd104768a1214"); // create service
26+
BleService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // create service
2727

2828
// create switch characteristic and allow remote device to read and write
2929
BleCharCharacteristic switchChar("0x2015", BleRead | BleWrite);

0 commit comments

Comments
 (0)