We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3077be3 commit c63b190Copy full SHA for c63b190
notification.html
@@ -294,29 +294,6 @@ <h3>Logg</h3>
294
}
295
296
297
-/*
298
-
299
- function handleLedCharacteristic(characteristic) {
300
- if (characteristic === null) {
301
- console.log("Ukjent karakteristikk.");
302
- return Promise.resolve();
303
- }
304
- return characteristic.readValue()
305
- .then(sensorLocationData => {
306
- let sensorLocation = sensorLocationData.getUint8(0);
307
- switch (sensorLocation) {
308
- case 0: return 'Other';
309
- case 1: return 'Chest';
310
- case 2: return 'Wrist';
311
- case 3: return 'Finger';
312
- case 4: return 'Hand';
313
- case 5: return 'Ear Lobe';
314
- case 6: return 'Foot';
315
- default: return 'Unknown';
316
317
- }).then(location => console.log(location));
318
319
- */
320
321
// Funksjon for å skru LED på
322
0 commit comments