-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
58 lines (55 loc) · 1.42 KB
/
main.py
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
# On start do a reset
maxSecondCount = 60
reset = 1
secondCounter = maxSecondCount
def on_gesture_shake():
global reset, secondCounter
reset = 1
secondCounter = maxSecondCount
images.icon_image(IconNames.YES).show_image(0)
basic.pause(200)
images.create_image("""
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
""").show_image(0)
basic.pause(200)
images.icon_image(IconNames.YES).show_image(0)
basic.pause(200)
images.create_image("""
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
""").show_image(0)
basic.pause(200)
reset = 0
input.on_gesture(Gesture.SHAKE, on_gesture_shake)
def on_forever():
global secondCounter
if not (secondCounter == 0) and reset == 0:
basic.show_string("" + str((secondCounter)))
basic.pause(1000)
secondCounter += -1
else:
while secondCounter == 0:
images.create_image("""
. # # . .
# . . # .
# . . # .
# . . # .
. # # . .
""").show_image(0)
basic.pause(200)
images.create_image("""
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
""").show_image(0)
basic.pause(200)
basic.forever(on_forever)