-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPOST.py
96 lines (86 loc) · 1.98 KB
/
POST.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#Power On Self Test: tests all/most functions of Bit:Bot
from microbit import *
import neopixel
leftA = pin0
leftB = pin8
rightA = pin1
rightB = pin12
leftLine = pin11
rightLine = pin5
buzzer = pin14
lightSensor = pin2
lightSelect = pin16
np = neopixel.NeoPixel(pin13, 12)
sleepDel = 800
def forward():
leftA.write_digital(1)
leftB.write_digital(0)
rightA.write_digital(1)
rightB.write_digital(0)
def reverse():
leftA.write_digital(0)
leftB.write_digital(1)
rightA.write_digital(0)
rightB.write_digital(1)
def stop():
leftA.write_digital(0)
leftB.write_digital(0)
rightA.write_digital(0)
rightB.write_digital(0)
def showAll(red,green,blue):
for i in range(12):
np[i] = (red,green,blue)
np.show()
def showLeftLine():
aset = leftLine.read_digital() * 9
for i in range(4):
display.set_pixel(0,i,aset)
display.set_pixel(0,4,9)
def showRightLine():
aset = rightLine.read_digital() * 9
for i in range(4):
display.set_pixel(4,i,aset)
display.set_pixel(4,4,9)
def showLight():
lightSelect.write_digital(0)
leftLight = lightSensor.read_analog()
lightSelect.write_digital(1)
rightLight = lightSensor.read_analog()
for i in range(5):
if leftLight > i*200:
display.set_pixel(1,4-i,9)
else:
display.set_pixel(1,4-i,0)
if rightLight > i*200:
display.set_pixel(3,4-i,9)
else:
display.set_pixel(3,4-i,0)
while True:
forward()
showAll(50,0,0)
showLeftLine()
showRightLine()
showLight()
sleep(sleepDel)
stop()
showAll(0,50,0)
showLeftLine()
showRightLine()
showLight()
sleep(sleepDel)
stop()
reverse()
showAll(0,0,50)
showLeftLine()
showRightLine()
showLight()
sleep(sleepDel)
stop()
showAll(50,50,50)
buzzer.write_digital(1)
showLeftLine()
showRightLine()
showLight()
sleep(sleepDel)
buzzer.write_digital(0)
stop()