Skip to content

Commit afdb9cc

Browse files
committed
.
1 parent e5037c1 commit afdb9cc

File tree

1 file changed

+1
-35
lines changed

1 file changed

+1
-35
lines changed

led.html

+1-35
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,7 @@ <h3>Logg</h3>
183183
if (characteristicUuid.startsWith('0x')) {
184184
characteristicUuid = parseInt(characteristicUuid, 16);
185185
}
186-
187-
188-
let characteristicButtonUuid = '00001524-1212-efde-1523-785feabcd123';
189-
if (characteristicButtonUuid.startsWith('0x')) {
190-
characteristicButtonUuid = parseInt(characteristicButtonUuid, 16);
191-
}
192-
193-
186+
194187
log('Søker etter enheter med valgt service og characteristic...');
195188
navigator.bluetooth.requestDevice({filters: [{services: [serviceUuid]}]})
196189
.then(device => device.connectGATT())
@@ -201,16 +194,6 @@ <h3>Logg</h3>
201194
log('> Tilkoblet enhet. LED kan nå styres.');
202195

203196
})
204-
205-
.then(service => service.getCharacteristic(characteristicButtonUuid))
206-
207-
.then(characteristic => {
208-
myButtonCharacteristic = buttonCharacteristic;
209-
return myButtonCharacteristic.startNotifications().then(() => {
210-
log('> Notifications started');
211-
myButtonCharacteristic.addEventListener('characteristicvaluechanged',
212-
handleNotifications);
213-
});
214197
.catch(error => {
215198
log('Argh! ' + error);
216199
});
@@ -247,23 +230,6 @@ <h3>Logg</h3>
247230

248231
};
249232

250-
// Event-handler for notificationer
251-
function handleNotifications(event) {
252-
let value = event.target.value;
253-
// In Chrome 50+, a DataView is returned instead of an ArrayBuffer.
254-
value = value.buffer ? value : new DataView(value);
255-
let a = [];
256-
// Convert raw data bytes to hex values just for the sake of showing something.
257-
// In the "real" world, you'd use data.getUint8, data.getUint16 or even
258-
// TextDecoder to process raw data bytes.
259-
for (var i = 0; i < value.byteLength; i++) {
260-
a.push(('00' + value.getUint8(i).toString(16)).slice(-2));
261-
}
262-
log('> ' + a.join(''));
263-
}
264-
265-
266-
267233

268234
</script>
269235

0 commit comments

Comments
 (0)