File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
libraries/CurieBle/examples Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ const int ledPin = 13; // set ledPin to on-board LED
24
24
const int buttonPin = 4 ; // set buttonPin to digital pin 4
25
25
26
26
BlePeripheral blePeripheral; // create peripheral instance
27
- BleService ledService (" 19b10010e8f2537e4f6cd104768a1214 " ); // create service
27
+ BleService ledService (" 19B10010-E8F2-537E-4F6C-D104768A1214 " ); // create service
28
28
29
29
30
30
// 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);
32
32
// 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
34
34
35
35
void setup () {
36
36
Serial.begin (9600 );
Original file line number Diff line number Diff line change 23
23
const int ledPin = 13 ; // set ledPin to use on-board LED
24
24
BlePeripheral blePeripheral; // create peripheral instance
25
25
26
- BleService ledService (" 19b10000e8f2537e4f6cd104768a1214 " ); // create service
26
+ BleService ledService (" 19B10000-E8F2-537E-4F6C-D104768A1214 " ); // create service
27
27
28
28
// create switch characteristic and allow remote device to read and write
29
29
BleCharCharacteristic switchChar (" 0x2015" , BleRead | BleWrite);
You can’t perform that action at this time.
0 commit comments