-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
83 lines (81 loc) · 2.52 KB
/
main.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
control.onEvent(EventBusSource.MICROBIT_ID_BUTTON_A, EventBusValue.MICROBIT_EVT_ANY, function on_microbit_id_button_a_evt() {
if (input.magneticForce(Dimension.Strength) < 0 && input.magneticForce(Dimension.Strength) < 20) {
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
# # # # #
`)
} else if (input.magneticForce(Dimension.Strength) > 20 && input.magneticForce(Dimension.Strength) < 40) {
basic.showLeds(`
. . . . .
. . . . .
. . . . .
# # # # #
# # # # #
`)
} else if (input.magneticForce(Dimension.Strength) > 40 && input.magneticForce(Dimension.Strength) < 60) {
basic.showLeds(`
. . . . .
. . . . .
# # # # #
# # # # #
# # # # #
`)
} else if (input.magneticForce(Dimension.Strength) > 60 && input.magneticForce(Dimension.Strength) < 80) {
basic.showLeds(`
. . . . .
# # # # #
# # # # #
# # # # #
# # # # #
`)
} else if (input.magneticForce(Dimension.Strength) > 80 && input.magneticForce(Dimension.Strength) < 100) {
basic.showLeds(`
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
`)
} else {
basic.showLeds(`
# . # . #
# . # . #
# . # . #
. . . . .
# . # . #
`)
}
})
basic.showString("MAGNET METER")
basic.showLeds(`
. # . # .
. # . # .
. . . . .
# . . . #
. # # # .
`)
control.waitMicros(48)
basic.clearScreen()
basic.showLeds(`
. # # # .
# . . . #
# # # # #
# . . . #
# . . . #
`)
control.raiseEvent(EventBusSource.MICROBIT_ID_BUTTON_A, EventBusValue.MICROBIT_EVT_ANY)
basic.forever(function on_forever() {
if (input.buttonIsPressed(Button.AB)) {
basic.showLeds(`
# # # # #
# . . . .
# . # . #
# . . . .
# # # # #
`)
music.playMelody("E F G A G - B C5 ", 500)
}
})