-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.ts
99 lines (79 loc) · 2.64 KB
/
test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
serial.writeLine("starting...")
let k = 0
input.onButtonPressed(Button.A, function () {
basic.showIcon(IconNames.Heart)
for(let i = 0; i < 10; i++) {
k = k + 1
datalogger.log(
datalogger.createCV("x", 100+k),
datalogger.createCV("y", 200+k),
datalogger.createCV("z", 300+k))
}
basic.clearScreen()
})
input.onButtonPressed(Button.B, function () {
game.addScore(1)
datalogger.log(
datalogger.createCV("x", input.acceleration(Dimension.X)),
datalogger.createCV("y", input.acceleration(Dimension.Y))
)
})
input.onButtonPressed(Button.AB, function () {
basic.showIcon(IconNames.No)
datalogger.deleteLog(datalogger.DeleteType.Fast)
basic.clearScreen()
})
basic.showIcon(IconNames.Heart)
blelog.startBLELogService()
datalogger.includeTimestamp(FlashLogTimeStampFormat.Seconds)
// basic.forever(function () {
// game.addScore(1)
// // for(let i = 0; i < 10; i++) {
// // datalogger.log(
// // datalogger.createCV("x", input.acceleration(Dimension.X)),
// // datalogger.createCV("y", input.acceleration(Dimension.Y)),
// // datalogger.createCV("abc", 12.34),
// // datalogger.createCV("def", 45.67),
// // datalogger.createCV("g", 123.456),
// // datalogger.createCV("h", 12312.12312123),
// // datalogger.createCV("i", 123.65434)
// // )
// // datalogger.log(
// // datalogger.createCV("x", input.acceleration(Dimension.X)),
// // datalogger.createCV("y", input.acceleration(Dimension.Y))
// // )
// // basic.pause(10)
// // }
// basic.pause(500)
// })
// blelog.startBLELogService()
// datalogger.setColumnTitles(
// "x",
// "y"//,
// //"z"
// )
// let x = 0
// input.onButtonPressed(Button.A, function () {
// serial.writeLine("Logging X,Y,Z")
// x = x + 1
// if(x%5==0) {
// serial.writeLine("Doing a Z...")
// datalogger.log(
// datalogger.createCV("x", input.acceleration(Dimension.X)),
// datalogger.createCV("y", input.acceleration(Dimension.Y)),
// datalogger.createCV("z", input.acceleration(Dimension.Z))
// )
// } else {
// datalogger.log(
// datalogger.createCV("x", input.acceleration(Dimension.X)),
// datalogger.createCV("y", input.acceleration(Dimension.Y))
// )
// }
// })
// input.onButtonPressed(Button.AB, function () {
// serial.writeLine("Clearing Log Full")
// datalogger.deleteLog()
// })
// input.onButtonPressed(Button.B, function() {
// blelog.dumpBLELog()
// })