Skip to content

Commit 9154934

Browse files
committed
Sende verdier til DK
1 parent 4c0fbc8 commit 9154934

File tree

3 files changed

+41
-14
lines changed

3 files changed

+41
-14
lines changed

joystick.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ <h3>Logg</h3>
395395
return controlPoint.writeValue(resetEnergyExpended);
396396
});*/
397397

398-
setTimeout(readWriteCharacteristic.writeValue(charVal), 100);
398+
return myCharacteristic.writeValue(charVal);
399399
}
400400
// Skriver veriden fra slideren til HTML-elementet med ID 'slider-value'
401401
//$('#slider-value').html(sliderVal + '%');
@@ -520,9 +520,7 @@ <h3>Logg</h3>
520520

521521
if ( diffTop < REVERT_THRESHOLD && diffLeft < REVERT_THRESHOLD ){
522522
this.$el.css( initialOffset ).addClass('ease') ;
523-
524-
525-
resetCharByte(1);
523+
setTimeout(resetCharByte(1), 2000);
526524

527525

528526

motor.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,11 @@ <h1>Styring av motorer</h1>
206206
setBit(10, 'b', speed);
207207

208208
// Set direction
209-
setBit(15, 'b', direction);
209+
setBit(14, 'b', direction);
210210
} else if(power == 0) {
211211
// Set speed to 0
212212
setBit(10, 'b', 0);
213-
setBit(15, 'b', 1);
213+
setBit(14, 'b', 1);
214214
}
215215

216216
if(readWriteCharacteristic) {
@@ -233,11 +233,11 @@ <h1>Styring av motorer</h1>
233233
setBit(11, 'b', speed);
234234

235235
// Set direction
236-
setBit(16, 'b', direction);
236+
setBit(15, 'b', direction);
237237
} else if(power == 0) {
238238
// Set speed to 0
239239
setBit(11, 'b', 0);
240-
setBit(16, 'b', 1);
240+
setBit(15, 'b', 1);
241241
}
242242

243243
if(readWriteCharacteristic) {
@@ -258,11 +258,11 @@ <h1>Styring av motorer</h1>
258258
setBit(12, 'b', speed);
259259

260260
// Set direction
261-
setBit(17, 'b', direction);
261+
setBit(16, 'b', direction);
262262
} else if(power == 0) {
263263
// Set speed to 0
264264
setBit(12, 'b', 0);
265-
setBit(17, 'b', 1);
265+
setBit(16, 'b', 1);
266266
}
267267

268268
if(readWriteCharacteristic) {
@@ -285,11 +285,11 @@ <h1>Styring av motorer</h1>
285285
setBit(13, 'b', speed);
286286

287287
// Set direction
288-
setBit(18, 'b', direction);
288+
setBit(17, 'b', direction);
289289
} else if(power == 0) {
290290
// Set speed to 0
291291
setBit(13, 'b', 0);
292-
setBit(18, 'b', 1);
292+
setBit(17, 'b', 1);
293293
}
294294

295295
if(readWriteCharacteristic) {

read.html

+31-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,10 @@
109109
padding: 5px;
110110
background-color: red;
111111
color: white;
112+
visibility:
112113
}
113114

115+
114116
</style>
115117

116118
<title>Physical Web</title>
@@ -353,6 +355,31 @@ <h3>Logg</h3>
353355
$("#sliderLeft").val(outputLeft);
354356
$("#sliderRight").val(outputRight);
355357

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+
356383

357384

358385
});
@@ -396,12 +423,14 @@ <h3>Logg</h3>
396423
$("#sliderLeft").val(0);
397424
$("#sliderRight").val(0);
398425

426+
var charVal = new Uint8Array(20);
427+
399428
setTimeout(function(){
400429
if(writePermission)
401-
writeToCharacteristic(1, 0);
430+
readWriteCharacteristic.writeValue(charVal);
402431
else {
403432
setTimeout(function(){
404-
writeToCharacteristic(1, 0);
433+
readWriteCharacteristic.writeValue(charVal);
405434
}, 300);
406435
}
407436

0 commit comments

Comments
 (0)