-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathintersection.py
162 lines (157 loc) · 5.68 KB
/
intersection.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
from spike_pybricks_motorpair import MotorPair
from pybricks.parameters import Port
from pybricks.hubs import PrimeHub
from pybricks.tools import wait
hub = PrimeHub()
display = hub.display
motors = MotorPair(Port.A,Port.B)
def calibrateLeftDisplay(brightness):
display.pixel(0,0,brightness)
display.pixel(0,1,brightness)
display.pixel(1,0,brightness)
display.pixel(1,1,brightness)
display.pixel(2,0,brightness)
display.pixel(2,1,brightness)
display.pixel(3,0,brightness)
display.pixel(3,1,brightness)
display.pixel(4,0,brightness)
display.pixel(4,1,brightness)
def calibrateRightDisplay(brightness):
display.pixel(0,3,brightness)
display.pixel(0,4,brightness)
display.pixel(1,3,brightness)
display.pixel(1,4,brightness)
display.pixel(2,3,brightness)
display.pixel(2,4,brightness)
display.pixel(3,3,brightness)
display.pixel(3,4,brightness)
display.pixel(4,3,brightness)
display.pixel(4,4,brightness)
def intersectionSolverDisplay():
display.off()
display.pixel(0,2)
display.pixel(2,2)
display.pixel(3,2)
display.pixel(4,2)
class Intersection:
def __init__(self, se, sd, green_values):
self.se = se
self.sd = sd
self.green_values = green_values
def intersectionSolver(self, valores):
se = self.se
sd = self.sd
last_values = valores
intersectionSolverDisplay()
name = 'intersectionSolver'
move_side = ''
while valores[0] != False or valores[1] != False:
if valores[0] == True and valores[1] == True:
last_values = valores
break
motors.start_tank(100,100)
wait(200)
last_values = valores
valores = self.checkGreen(self.green_values)
valores = last_values
motors.stop_tank()
if valores[0] == True and valores[1] == True:
print('dar voltinha')
if se.reflection() > 50 or sd.reflection() > 50 :
print('fake double')
return [name,'','Failed']
motors.move_tank(1000, 350, 350)
while se.reflection() > 80 and sd.reflection() > 80 :
motors.start_tank(350, -350)
motors.stop_tank()
wait(1000)
else:
if valores[0] == True:
if se.reflection() > 50:
print('fake left')
return [name,'','Failed']
print('esquerdinha')
motors.stop_tank()
wait(1000)
motors.start_tank(300,0)
wait(1000)
motors.stop_tank()
move_side = 'left'
else:
if sd.reflection() > 50 :
print('fake right')
return [name,'','Failed']
print('direitinha')
motors.stop_tank()
motors.start_tank(0,300)
wait(1000)
while se.reflection() > 80 and sd.reflection() > 80 :
motors.start_tank(0,300)
motors.stop_tank()
wait(1000)
move_side = 'right'
name = 'intersectionSolver'
log = 'succeded'
return [name,move_side,log]
def getGreenValues(self,side):
hsv_min = [0,0,0]
hsv_max = [0,0,0]
hsv_med = [0,0,0]
if side == 'left':
sensor = self.se
elif side == "right":
sensor = self.sd
for x in range(200):
wait(10)
if side == "right":
calibrateRightDisplay(int((x+1)/2))
if side == "left":
calibrateLeftDisplay(int((x+1)/2))
hsv_obj = sensor.hsv()
hsv_med[0] += hsv_obj.h
hsv_med[1] += hsv_obj.s
hsv_med[2] += hsv_obj.v
print(hsv_med)
for i in range(3):
hsv_med[i] = hsv_med[i]/200
hsv_min[i] = hsv_med[i] - 20
hsv_max[i] = hsv_med[i] + 20
# if hsv_obj.h < hsv_min[0] or hsv_min[0] == 0 :
# hsv_min[0] = hsv_obj.h
# if hsv_obj.s < hsv_min[1] or hsv_min[1] == 0 :
# hsv_min[1] = hsv_obj.s
# if hsv_obj.v < hsv_min[2] or hsv_min[2] == 0 :
# hsv_min[2] = hsv_obj.v
# if hsv_obj.h > hsv_max[0]:
# hsv_max[0] = hsv_obj.h
# if hsv_obj.s > hsv_max[1]:
# hsv_max[1] = hsv_obj.s
# if hsv_obj.v > hsv_max[2]:
# hsv_max[2] = hsv_obj.v
wait(50)
hsv_values = [hsv_min, hsv_max]
print(hsv_values)
return hsv_values
def checkGreen(self, valores):
valuesE = valores[0]
valuesD = valores[1]
sensor_d = self.sd.hsv()
sensor_e = self.se.hsv()
direita = False
esquerda = False
# print(sensor)
# if sensor.h < values[0][0] or sensor.h > values[1][0]:
# return False
# if sensor.s < values[0][1] or sensor.s > values[1][1]:
# return False
# if sensor.v < values[0][2] or sensor.v > values[1][2]:
# return False
if sensor_d.h > valuesD[0][0] and sensor_d.h < valuesD[1][0]:
if sensor_d.s > valuesD[0][1] and sensor_d.s < valuesD[1][1]:
if sensor_d.v > valuesD[0][2] and sensor_d.v < valuesD[1][2]:
direita = True
if sensor_e.h > valuesE[0][0] and sensor_e.h < valuesE[1][0]:
if sensor_e.s > valuesE[0][1] and sensor_e.s < valuesE[1][1]:
if sensor_e.v > valuesE[0][2] and sensor_e.v < valuesE[1][2]:
esquerda = True
return [esquerda, direita]