Skip to content

Commit d61a16a

Browse files
committed
Points that increases with 1 for each notification
1 parent 7b03d56 commit d61a16a

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

.Rhistory

Whitespace-only changes.

css/controllers.css

+12-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,15 @@
3939
border: 4px solid #0b4251;
4040
border-radius: 50%;
4141

42-
}
42+
}
43+
44+
#points {
45+
font-size:60px;
46+
color: white;
47+
text-align: center;
48+
font-weight: 700;
49+
position: fixed;
50+
top: 30px;
51+
width: 100%;
52+
}
53+

img/arrow.png

3.75 KB
Loading

include/controllers.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11

22

33
<!-- Controllers: joystick and button -->
4-
4+
55
<div id="control-container">
66

77
<div id="joystick-container">
88
</div>
99

10+
<div id="points">
11+
0
12+
</div>
13+
1014
<div id="button-container">
1115
<div id="control-button">
1216
</div>

js/demo.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
var priorityPacket = 0;
1212

13-
13+
var score = 0;
1414

1515

1616
$('#LEDp').on("click change tapend", function() {
@@ -192,17 +192,21 @@
192192
});
193193

194194
$('#control-button').on('touchstart', function(event) {
195-
$(this).css({'box-shadow': '0px 0px 10px 3px rgba(0,0,0, 0.2)', 'height': '115px', 'width': '115px', 'ease' : '0.2'});
195+
$(this).css({'box-shadow': '0px 0px 10px 3px rgba(0,0,0, 0.2)', 'height': '115px', 'width': '115px', 'transition-timing-function' : 'ease'});
196196
setBit(1, 0, 1);
197197
priorityWrite(charVal);
198198
event.preventDefault();
199199

200200
});
201201

202202
$('#control-button').on('touchend', function() {
203-
$(this).css({'box-shadow': '0px 0px 30px 10px rgba(0,0,0, 0.15)', 'height': '120px', 'width': '120px', '-webkit-transition-timing-function' : 'ease'});
203+
$(this).css({'box-shadow': '0px 0px 30px 10px rgba(0,0,0, 0.15)', 'height': '120px', 'width': '120px', 'transition-timing-function' : 'ease'});
204204
setBit(1,0,0);
205205
priorityWrite(charVal);
206206
});
207207

208+
function notificationCallback(dataArray) {
209+
score += 1;
210+
$('#points').text(score);
211+
}
208212

js/gatt.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,14 @@ function handleNotification(event) {
134134
let value = event.target.value;
135135
value = value.buffer ? value : new DataView(value);
136136

137-
// *** Insert callback function for easier access to notification events here? ****
137+
// Checks if notificationCallback exists, and if it does, calls it with the received data array as argument
138+
if (typeof notificationCallback === "function") {
139+
var valueArray = new Uint8Array(20);
140+
for(var i = 0; i < 20; i++)
141+
valueArray[i] = value.getUint8(i);
138142

143+
notificationCallback(valueArray);
144+
}
139145

140146
// Testing, testing...
141147
var bg_1,

0 commit comments

Comments
 (0)