File tree 3 files changed +41
-14
lines changed
3 files changed +41
-14
lines changed Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ <h3>Logg</h3>
395
395
return controlPoint.writeValue(resetEnergyExpended);
396
396
});*/
397
397
398
- setTimeout ( readWriteCharacteristic . writeValue ( charVal ) , 100 ) ;
398
+ return myCharacteristic . writeValue ( charVal ) ;
399
399
}
400
400
// Skriver veriden fra slideren til HTML-elementet med ID 'slider-value'
401
401
//$('#slider-value').html(sliderVal + '%');
@@ -520,9 +520,7 @@ <h3>Logg</h3>
520
520
521
521
if ( diffTop < REVERT_THRESHOLD && diffLeft < REVERT_THRESHOLD ) {
522
522
this . $el . css ( initialOffset ) . addClass ( 'ease' ) ;
523
-
524
-
525
- resetCharByte ( 1 ) ;
523
+ setTimeout ( resetCharByte ( 1 ) , 2000 ) ;
526
524
527
525
528
526
Original file line number Diff line number Diff line change @@ -206,11 +206,11 @@ <h1>Styring av motorer</h1>
206
206
setBit ( 10 , 'b' , speed ) ;
207
207
208
208
// Set direction
209
- setBit ( 15 , 'b' , direction ) ;
209
+ setBit ( 14 , 'b' , direction ) ;
210
210
} else if ( power == 0 ) {
211
211
// Set speed to 0
212
212
setBit ( 10 , 'b' , 0 ) ;
213
- setBit ( 15 , 'b' , 1 ) ;
213
+ setBit ( 14 , 'b' , 1 ) ;
214
214
}
215
215
216
216
if ( readWriteCharacteristic ) {
@@ -233,11 +233,11 @@ <h1>Styring av motorer</h1>
233
233
setBit ( 11 , 'b' , speed ) ;
234
234
235
235
// Set direction
236
- setBit ( 16 , 'b' , direction ) ;
236
+ setBit ( 15 , 'b' , direction ) ;
237
237
} else if ( power == 0 ) {
238
238
// Set speed to 0
239
239
setBit ( 11 , 'b' , 0 ) ;
240
- setBit ( 16 , 'b' , 1 ) ;
240
+ setBit ( 15 , 'b' , 1 ) ;
241
241
}
242
242
243
243
if ( readWriteCharacteristic ) {
@@ -258,11 +258,11 @@ <h1>Styring av motorer</h1>
258
258
setBit ( 12 , 'b' , speed ) ;
259
259
260
260
// Set direction
261
- setBit ( 17 , 'b' , direction ) ;
261
+ setBit ( 16 , 'b' , direction ) ;
262
262
} else if ( power == 0 ) {
263
263
// Set speed to 0
264
264
setBit ( 12 , 'b' , 0 ) ;
265
- setBit ( 17 , 'b' , 1 ) ;
265
+ setBit ( 16 , 'b' , 1 ) ;
266
266
}
267
267
268
268
if ( readWriteCharacteristic ) {
@@ -285,11 +285,11 @@ <h1>Styring av motorer</h1>
285
285
setBit ( 13 , 'b' , speed ) ;
286
286
287
287
// Set direction
288
- setBit ( 18 , 'b' , direction ) ;
288
+ setBit ( 17 , 'b' , direction ) ;
289
289
} else if ( power == 0 ) {
290
290
// Set speed to 0
291
291
setBit ( 13 , 'b' , 0 ) ;
292
- setBit ( 18 , 'b' , 1 ) ;
292
+ setBit ( 17 , 'b' , 1 ) ;
293
293
}
294
294
295
295
if ( readWriteCharacteristic ) {
Original file line number Diff line number Diff line change 109
109
padding : 5px ;
110
110
background-color : red;
111
111
color : white;
112
+ visibility :
112
113
}
113
114
115
+
114
116
</ style >
115
117
116
118
< title > Physical Web</ title >
@@ -353,6 +355,31 @@ <h3>Logg</h3>
353
355
$ ( "#sliderLeft" ) . val ( outputLeft ) ;
354
356
$ ( "#sliderRight" ) . val ( outputRight ) ;
355
357
358
+ var charVal = new Uint8Array ( 20 ) ;
359
+
360
+ if ( readWriteCharacteristic && writePermission == 1 ) {
361
+
362
+ // Sjekker i hvilket intervall slider-verdien er, og sender korresponderende verdi
363
+ // via BLE til firmware.
364
+ // Setter 1. bit lik 1 for å tenne 1. LED osv.
365
+ writePermission = 0 ;
366
+
367
+ charVal [ 16 ] = outputLeft ;
368
+ charVal [ 17 ] = outputRight ;
369
+
370
+ console . log ( charVal ) ;
371
+
372
+
373
+ return readWriteCharacteristic . writeValue ( charVal )
374
+ . then ( writeReturn => {
375
+ writePermission = 1 ;
376
+ } ) ;
377
+ } else if ( writePermission == 0 ) {
378
+ discardedPackets . push ( charVal ) ;
379
+ }
380
+ } ) ;
381
+
382
+
356
383
357
384
358
385
} ) ;
@@ -396,12 +423,14 @@ <h3>Logg</h3>
396
423
$ ( "#sliderLeft" ) . val ( 0 ) ;
397
424
$ ( "#sliderRight" ) . val ( 0 ) ;
398
425
426
+ var charVal = new Uint8Array ( 20 ) ;
427
+
399
428
setTimeout ( function ( ) {
400
429
if ( writePermission )
401
- writeToCharacteristic ( 1 , 0 ) ;
430
+ readWriteCharacteristic . writeValue ( charVal ) ;
402
431
else {
403
432
setTimeout ( function ( ) {
404
- writeToCharacteristic ( 1 , 0 ) ;
433
+ readWriteCharacteristic . writeValue ( charVal ) ;
405
434
} , 300 ) ;
406
435
}
407
436
You can’t perform that action at this time.
0 commit comments