-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtilty.py
42 lines (33 loc) · 902 Bytes
/
tilty.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
from microbit import *
TILT = 150
def centered(n):
return -TILT < n < TILT
def pos_tilt(n):
return TILT <= n
def neg_tilt(n):
return n <= -TILT
while True:
x = accelerometer.get_x()
y = accelerometer.get_y()
if centered(x):
if centered(y):
display.show(Image.DIAMOND_SMALL)
elif pos_tilt(y):
display.show(Image.ARROW_N)
elif neg_tilt(y):
display.show(Image.ARROW_S)
elif pos_tilt(x):
if centered(y):
display.show(Image.ARROW_W)
elif pos_tilt(y):
display.show(Image.ARROW_NW)
elif neg_tilt(y):
display.show(Image.ARROW_SW)
else:
if centered(y):
display.show(Image.ARROW_E)
elif pos_tilt(y):
display.show(Image.ARROW_NE)
elif neg_tilt(y):
display.show(Image.ARROW_SE)
sleep(100)