-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
57 lines (57 loc) · 1.4 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
enum RadioMessage {
message1 = 49434
}
input.onButtonPressed(Button.A, function () {
music.setVolume(0)
basic.showString("" + (input.compassHeading()))
basic.showString("o")
basic.showString("" + (input.temperature()))
basic.showString("oC")
music.setVolume(127)
})
input.onButtonPressed(Button.AB, function () {
music.setVolume(0)
basic.showIcon(IconNames.No)
})
input.onButtonPressed(Button.B, function () {
music.setVolume(0)
game.addScore(1)
for (let index = 0; index < 4; index++) {
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
# . . . .
`)
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
# # . . .
`)
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
# # # . .
`)
}
for (let index = 0; index < 1e+107; index++) {
basic.showLeds(`
. # . # .
# . . . #
. # . # .
. . . . .
# # # # #
`)
radio.sendMessage(RadioMessage.message1)
}
})
basic.showIcon(IconNames.EigthNote)
music.playMelody("C5 C B D A E G E ", 120)
music.playMelody("C5 C C5 F C A D G ", 120)
music.playMelody("C5 F G - A B C5 C ", 120)
basic.clearScreen()