-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLineFollower2.py
84 lines (73 loc) · 1.89 KB
/
LineFollower2.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
# Add your Python code here. E.g.
from microbit import *
leftA = pin0
leftB = pin8
rightA = pin1
rightB = pin12
leftLine = pin11
rightLine = pin5
speedFwd = 100
speedTurn = 40
def reverse (spdpct):
spd = spdpct * 10.23
leftA.write_analog(1023-spd)
leftB.write_digital(1)
rightA.write_analog(1023-spd)
rightB.write_digital(1)
def forward (spdpct):
spd = spdpct * 10.23
leftA.write_analog(spd)
leftB.write_digital(0)
rightA.write_analog(spd)
rightB.write_digital(0)
def spinLeft (spdpct):
spd = spdpct * 10.23
leftA.write_analog(1023-spd)
leftB.write_digital(1)
rightA.write_analog(spd)
rightB.write_digital(0)
def softLeft (spdpct):
spd = spdpct * 10.23
leftA.write_analog(350)
leftB.write_digital(1)
rightA.write_analog(spd)
rightB.write_digital(0)
def spinRight (spdpct):
spd = spdpct * 10.23
leftA.write_analog(spd)
leftB.write_digital(0)
rightA.write_analog(1023-spd)
rightB.write_digital(1)
def softRight (spdpct):
spd = spdpct * 10.23
leftA.write_analog(spd)
leftB.write_digital(0)
rightA.write_analog(350)
rightB.write_digital(1)
def stop():
leftA.write_analog(0)
leftB.write_digital(0)
rightA.write_analog(0)
rightB.write_digital(0)
lastfwd = 0
while True:
lline = leftLine.read_digital()
rline = rightLine.read_digital()
if((lline == 1) and (rline == 0)):
softLeft(speedTurn)
#sleep(1)
lastfwd = 0
while ((leftLine.read_digital() == 1) and (rightLine.read_digital() == 0)):
pass
#sleep(1)
elif((rline == 1) and (lline == 0)):
softRight(speedTurn)
#sleep(1)
lastfwd = 0
while ((rightLine.read_digital() == 1) and (leftLine.read_digital() == 0)):
pass
#sleep(1)
else:
if (lastfwd == 0):
forward(speedFwd)
lastfwd = 1