@@ -183,14 +183,7 @@ <h3>Logg</h3>
183
183
if ( characteristicUuid . startsWith ( '0x' ) ) {
184
184
characteristicUuid = parseInt ( characteristicUuid , 16 ) ;
185
185
}
186
-
187
-
188
- let characteristicButtonUuid = '00001524-1212-efde-1523-785feabcd123' ;
189
- if ( characteristicButtonUuid . startsWith ( '0x' ) ) {
190
- characteristicButtonUuid = parseInt ( characteristicButtonUuid , 16 ) ;
191
- }
192
-
193
-
186
+
194
187
log ( 'Søker etter enheter med valgt service og characteristic...' ) ;
195
188
navigator . bluetooth . requestDevice ( { filters : [ { services : [ serviceUuid ] } ] } )
196
189
. then ( device => device . connectGATT ( ) )
@@ -201,16 +194,6 @@ <h3>Logg</h3>
201
194
log ( '> Tilkoblet enhet. LED kan nå styres.' ) ;
202
195
203
196
} )
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
- } ) ;
214
197
. catch ( error => {
215
198
log ( 'Argh! ' + error ) ;
216
199
} ) ;
@@ -247,23 +230,6 @@ <h3>Logg</h3>
247
230
248
231
} ;
249
232
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
-
267
233
268
234
</ script >
269
235
0 commit comments