-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
62 lines (61 loc) · 1.17 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
function clap (haku: number) {
pins.digitalWritePin(DigitalPin.P0, 1)
basic.pause(80)
pins.digitalWritePin(DigitalPin.P0, 0)
basic.pause(haku * 320)
}
function GJ () {
for (let index = 0; index < 3; index++) {
clap(1)
}
yasumi(1)
for (let index = 0; index < 3; index++) {
clap(1)
}
yasumi(1)
for (let index = 0; index < 7; index++) {
clap(1)
}
yasumi(1)
}
function yasumi (haku: number) {
basic.pause(haku * 320)
}
input.onButtonPressed(Button.A, function () {
gogo = gogo * -1
if (gogo < 0) {
basic.showLeds(`
# . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
} else {
basic.showLeds(`
. . . . #
. . . . .
. . . . .
. . . . .
. . . . .
`)
}
})
input.onGesture(Gesture.Shake, function () {
})
function claps () {
for (let index = 0; index < 20; index++) {
clap(0.3)
}
}
let gogo = 0
gogo = -1
basic.forever(function () {
if (gogo > 0) {
GJ()
}
if (gogo > 0) {
claps()
}
gogo = -1
})