Skip to content

Commit c7e8527

Browse files
committed
Balancer: Updated UUID, now using standard NUS UUID
1 parent 1ef6ca9 commit c7e8527

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

balancer/js/ble.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,15 @@ var service;
55
var characteristic;
66
var enableLogging = true;
77

8-
const serviceAdvUUID = "6e400050-b5a3-f393-e0a9-e50e24dcca9e";
98
const serviceUUID = "6e400001-b5a3-f393-e0a9-e50e24dcca9e";
109
const characteristicUUID = "6e400002-b5a3-f393-e0a9-e50e24dcca9e";
1110

1211
function connect(callbackOnConnect) {
1312
if(enableLogging)
14-
console.log("Scanning for devices with advertised service UUID " + serviceAdvUUID );
13+
console.log("Scanning for devices with advertised service UUID " + serviceUUID );
1514
navigator.bluetooth.requestDevice(
1615
{filters:
1716
[
18-
{services: [serviceAdvUUID]},
1917
{services: [serviceUUID]}
2018
]
2119
}

0 commit comments

Comments
 (0)