-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
63 lines (63 loc) · 1.25 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
input.onButtonPressed(Button.A, function () {
if (Styrkod < 5) {
Styrkod = Styrkod + 1
} else {
Styrkod = 1
}
})
input.onButtonPressed(Button.B, function () {
radio.sendNumber(Styrkod)
})
let Styrkod = 0
radio.setGroup(1)
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
Styrkod = 1
basic.forever(function () {
if (Styrkod == 1) {
basic.showLeds(`
. . # . .
. # # # .
# . # . #
. . # . .
. . # . .
`)
} else if (Styrkod == 2) {
basic.showLeds(`
. . # . .
. . . # .
# # # # #
. . . # .
. . # . .
`)
} else if (Styrkod == 3) {
basic.showLeds(`
. . # . .
. . # . .
# . # . #
. # # # .
. . # . .
`)
} else if (Styrkod == 4) {
basic.showLeds(`
. . # . .
. # . . .
# # # # #
. # . . .
. . # . .
`)
} else {
basic.showLeds(`
. . . . .
. . # . .
. # . # .
. . # . .
. . . . .
`)
}
})