forked from Elsie4ever/DpmTeam2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
USLocalizer.java
217 lines (166 loc) · 7.92 KB
/
USLocalizer.java
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package trotty02;
import lejos.hardware.Sound;
import lejos.hardware.motor.EV3LargeRegulatedMotor;
import lejos.robotics.SampleProvider;
import lejos.utility.Delay;
import trotty02.USLocalizer.LocalizationType;
import trotty02.UltrasonicPoller;
public class USLocalizer {
public enum LocalizationType { FALLING_EDGE, RISING_EDGE };
public static int ROTATION_SPEED = 100;
private Odometer odo;
private SampleProvider usSensor;
private float[] usData;
private int delay = 40;
private double wheelRadius=2.1;
private int errorFilter,errorFilterMax,distanceMax,wallDistance;
private LocalizationType locType;
private UltrasonicPoller usPoller = new UltrasonicPoller(usSensor, usData);
private Navigation navigator = null;
private EV3LargeRegulatedMotor leftMotor, rightMotor;
private int corner;
public USLocalizer(Odometer odo, SampleProvider usSensor, float[] usData, LocalizationType locType, Navigation navigator, int cornerNum) {
this.odo = odo;
this.usSensor = usSensor;
this.usData = usData;
this.locType = locType;
this.navigator = navigator;
errorFilter = 0;
errorFilterMax = 70;
distanceMax = 70;
wallDistance = 30;
this.corner = cornerNum;
}
public USLocalizer(Odometer odo,UltrasonicPoller usPoller, LocalizationType locType, Navigation navigator, int corner) {
this.odo = odo;
this.usPoller = usPoller;
this.locType = locType;
this.navigator = navigator;
errorFilter = 0;
errorFilterMax = 70;
distanceMax = 70;
wallDistance = 30;
}
public void doLocalization() {
double [] pos = new double [3];
double angleA, angleB;
if (locType == LocalizationType.FALLING_EDGE) {
// rotate the robot until it sees no wall
double currentDistance = usPoller.getDistance();
//double currentDistance = this.getFilteredData();
while (currentDistance <= wallDistance) { //if the distance is less than wallDistance
//then keep rotating until it sees no wall
navigator.setSpeeds(ROTATION_SPEED, -ROTATION_SPEED);
Delay.msDelay(delay);
currentDistance = usPoller.getDistance();
}
// keep rotating until the robot sees a wall, then latch the angle
while (currentDistance > wallDistance) { //if the distance is bigger than wallDistance
//then keep rotating in the same direction
//until it sees a wall
navigator.setSpeeds(ROTATION_SPEED, -ROTATION_SPEED);
Delay.msDelay(delay);
currentDistance = usPoller.getDistance();
}
angleA = odo.getAng(); //record angleA
// switch direction and wait until it sees no wall
while (currentDistance <= wallDistance) { //if the distance is less than wallDistance
//then keep rotating in the opposite direction
//until it sees no wall
navigator.setSpeeds(-ROTATION_SPEED, ROTATION_SPEED);
Delay.msDelay(delay);
Delay.msDelay(3000);
currentDistance = usPoller.getDistance();
}
// keep rotating until the robot sees a wall, then latch the angle
while (currentDistance > wallDistance) { //if the distance is bigger than wallDistance
//then rotating in the same direction
//until it sees another wall
navigator.setSpeeds(-ROTATION_SPEED, ROTATION_SPEED);
Delay.msDelay(delay);
currentDistance = usPoller.getDistance();
}
angleB = odo.getAng(); //record angleB
// angleA is clockwise from angleB, so assume the average of the
// angles to the right of angleB is 45 degrees past 'north'
odo.getLeftMotor().stop(true); //stop the robot from turning to get more accurate reading
odo.getRightMotor().stop(false);
double deltaDegree;
deltaDegree = (360+angleB+45-(((360+angleB-angleA)%360)/2))%360-45; //calculate the new degree which it
//should turn to based on angle A and B
navigator.turnTo(deltaDegree, true); //turn to that degree
odo.setPosition(new double[] { 0.0, 0.0, 135.0 }, new boolean[] { true, true, true }); //reset position
// update the odometer position (example to follow:)
Delay.msDelay(1000);
Sound.beep();
} else {
/*
* The robot should turn until it sees the wall, then look for the
* "rising edges:" the points where it no longer sees the wall.
* This is very similar to the FALLING_EDGE routine, but the robot
* will face toward the wall for most of it.
*/
while (!usPoller.seesSomething()) { //if the distance is bigger than wallDistance
//then keep rotating until it sees a wall
navigator.setSpeeds(ROTATION_SPEED, -ROTATION_SPEED);
Delay.msDelay(delay);
}
// keep rotating until the robot sees no wall, then latch the angle
while (usPoller.seesSomething()) { //if the distance is less than wallDistance
//then keep rotating in the same direction
//until it sees no wall
navigator.setSpeeds(ROTATION_SPEED, -ROTATION_SPEED);
Delay.msDelay(delay);
}
angleA = odo.getAng(); //record angleA
// switch direction and wait until it sees a wall
while (!usPoller.seesSomething()) { //if the distance is bigger than wallDistance
//then keep rotating in the opposite direction
//until it sees a wall
navigator.setSpeeds(-ROTATION_SPEED, ROTATION_SPEED);
Delay.msDelay(delay);
}
// keep rotating until the robot sees no wall, then latch the angle
while (usPoller.seesSomething()) { //if the distance is less than wallDistance
//then rotating in the same direction
//until it sees no wall
navigator.setSpeeds(-ROTATION_SPEED, ROTATION_SPEED);
Delay.msDelay(delay);
}
angleB = odo.getAng(); //record angleB
// angleB is clockwise from angleA, so assume the average of the
// angles to the right of angleA is 45 degrees past 'north'
odo.getLeftMotor().stop(true);
odo.getRightMotor().stop(false); //stop the robot to get more accurate reading
double deltaDegree;
deltaDegree = (360+angleA+45-(((360+angleA-angleB)%360)/2))%360; //calculate the new degree which it
//should turn to based on angle A and B
navigator.turnTo(deltaDegree, true); //turn to that degree
// update the odometer position (example to follow:)
Delay.msDelay(4000); //delay 4 seconds to stable the robot before reset position
odo.setPosition(new double[] { 0.0, 0.0, 90.0 }, new boolean[] { true, true, true });
Sound.beep();
}
navigator.turnTo(135, true);
odo.setPosition(new double[] { 15, 15, 45.0 }, new boolean[] { true, true, true });
if(corner == 2)
odo.setPosition(new double[] {360-odo.getX(), 0, 135}, new boolean[]{true, false, true});
if(corner == 3)
odo.setPosition(new double[] {360-odo.getX(), 360-odo.getY(), 225}, new boolean[]{true, true, true});
if(corner == 4)
odo.setPosition(new double[] {0, 360-odo.getY(), 315}, new boolean[]{false, true, true});
/*odo.setPosition(new double[] {usPoller.distance+7, 0, 0}, new boolean[]{true, false, false});
//the 7 compensates for hardware inaccuracies
navigator.turnTo(270, true);
odo.setPosition(new double[] {0, usPoller.distance+7, 0}, new boolean[]{false, true, false});
navigator.turnTo(0, true);
odo.setPosition(new double [] {0.0, 0.0, 45.0}, new boolean [] {true, true, true});*/
//navigator.travelTo(30, 30);
//navigator.turnTo(0, true);
}
private float getFilteredData() {
//usSensor.fetchSample(usData, 0);
float distance = usData[0];
return distance;
}
}