-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpybricks-code-for-60337-express-passenger-train.py
48 lines (37 loc) · 1.38 KB
/
pybricks-code-for-60337-express-passenger-train.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
from pybricks.pupdevices import ColorDistanceSensor, DCMotor # ColorSensor instead of ColorDistanceSensor if using Mindstorms sensor
from pybricks.parameters import Color, Port
from pybricks.tools import wait
motor = DCMotor(Port.A)
sensor = ColorDistanceSensor(Port.B) # ColorSensor instead of ColorDistanceSensor if using Mindstorms sensor
station_stop_time_ms = 2500
eol_stop_time_ms = 5000
forward_speed = 20
check_color_interval_ms = 20
def check_for_color(color):
while sensor.color() != color:
wait(check_color_interval_ms)
while True:
print("looking for green")
check_for_color(Color.GREEN)
print("green detected, at station, stopping and continuing")
motor.brake()
wait(station_stop_time_ms)
motor.dc(forward_speed)
print("looking for yellow")
check_for_color(Color.YELLOW)
print("yellow detected, at end of line, stopping and going back to station")
motor.brake()
wait(eol_stop_time_ms)
motor.dc(-forward_speed)
print("looking for green")
check_for_color(Color.GREEN)
print("green detected, at station, stopping and continuing")
motor.brake()
wait(station_stop_time_ms)
motor.dc(-forward_speed)
print("looking for red")
check_for_color(Color.RED)
print("red detected, at end of line, stopping and going back to station")
motor.brake()
wait(eol_stop_time_ms)
motor.dc(forward_speed)