-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsonic00.py
85 lines (74 loc) · 1.97 KB
/
sonic00.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
from microbit import *
import neopixel
np = neopixel.NeoPixel(pin13, 12)
bright = 40
leftA = pin0
leftB = pin8
rightA = pin1
rightB = pin12
sonar = pin15
gospeed = 100
def getDistance():
start = running_time()
for i in range(100):
sonar.write_digital(1) # Send 10us pulse to trigger
sleep(0.01)
sonar.write_digital(0)
#while sonar.read_digital()==0: #and running_time()-count<0.1: # wait for echo signal to go high
# pass
while sonar.read_digital()==1: #and running_time()-count<0.1: # wait for echo to go low again
pass
stop = running_time()
elapsed = (stop-start-16)/3.77
distance = int(elapsed)
return distance
def forward (speedpct):
setAll(0,bright,0)
speed = speedpct * 10.23
leftA.write_analog(speed)
leftB.write_digital(0)
rightA.write_analog(speed)
rightB.write_digital(0)
def reverse (speedpct):
setAll(bright,0,0)
speed = speedpct * 10.23
leftA.write_analog(1023-speed)
leftB.write_digital(1)
rightA.write_analog(1023-speed)
rightB.write_digital(1)
def spinLeft (speedpct):
setAll(0,0,bright)
speed = speedpct * 10.23
leftA.write_analog(1023-speed)
leftB.write_digital(1)
rightA.write_analog(speed)
rightB.write_digital(0)
def spinRight (speedpct):
setAll(bright,0,bright)
speed = speedpct * 10.23
leftA.write_analog(speed)
leftB.write_digital(0)
rightA.write_analog(1023-speed)
rightB.write_digital(1)
def stop():
leftA.write_analog(0)
leftB.write_digital(0)
rightA.write_analog(0)
rightB.write_digital(0)
def setAll(red,green,blue):
for idx in range(12):
np[idx] = (red,green,blue)
np.show()
while True:
forward(gospeed)
dist = getDistance()
if (dist < 15):
#if (False):
stop()
display.scroll(str(dist))
sleep(3000)
reverse(gospeed)
sleep(800)
spinRight(gospeed)
sleep(200)
forward(gospeed)