forked from Elsie4ever/DpmTeam2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StartTrotty1.java
134 lines (104 loc) · 5.46 KB
/
StartTrotty1.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
package trotty02;
import trotty02.LightLocalizer;
import lejos.hardware.*;
import lejos.hardware.ev3.LocalEV3;
import lejos.hardware.lcd.TextLCD;
import lejos.hardware.motor.EV3LargeRegulatedMotor;
import lejos.hardware.port.Port;
import lejos.hardware.sensor.*;
import lejos.robotics.SampleProvider;
import trotty02.UltrasonicPoller;
/**
*
* @author Team 02
*
*
*/
public class StartTrotty1 {
// Static Resources:
// Left motor connected to output A
// Right motor connected to output D
// Ultrasonic sensor port connected to input S1
// Color sensor port connected to input S2
private static final EV3LargeRegulatedMotor leftMotor = new EV3LargeRegulatedMotor(LocalEV3.get().getPort("A"));
private static final EV3LargeRegulatedMotor rightMotor = new EV3LargeRegulatedMotor(LocalEV3.get().getPort("D"));
private static final EV3LargeRegulatedMotor clawMotor = new EV3LargeRegulatedMotor(LocalEV3.get().getPort("B"));
private static final EV3LargeRegulatedMotor lightMotor = new EV3LargeRegulatedMotor(LocalEV3.get().getPort("C"));
private static final Port usPortFront = LocalEV3.get().getPort("S2");
private static final Port usPortSide = LocalEV3.get().getPort("S3");
private static final Port usPortBack = LocalEV3.get().getPort("S4");
private static final EV3ColorSensor cS = new EV3ColorSensor(LocalEV3.get().getPort("S1"));
final static double sensorToAxis = 10.5;
static boolean captured = false;
private static final int bandCenter = 20; // Offset from the wall (cm)
private static final int bandWidth = 12;
private static final int resolution = 3;// Width of dead band (cm)
/**
* The main that controls the actions of the robot
* @param args command arguments
*/
public static void main(String[] args) {
int buttonChoice;
final WifiTest wifi = new WifiTest();
wifi.run();
int corner = wifi.getCorner();
//final Odometer odo = new Odometer(leftMotor, rightMotor, 30, true, usPoller);
final TextLCD t = LocalEV3.get().getTextLCD();
//Sound.setVolume(50);
//Setup ultrasonic sensor
// 1. Create a port object attached to a physical port (done above)
// 2. Create a sensor instance and attach to port
// 3. Create a sample provider instance for the above and initialize operating mode
// 4. Create a buffer for the sensor data
@SuppressWarnings("resource") // Because we don't bother to close this resource
SensorModes usSensorFront = new EV3UltrasonicSensor(usPortFront);
SampleProvider usValueFront = usSensorFront.getMode("Distance"); // colorValue provides samples from this instance
float[] usDataFront = new float[usValueFront.sampleSize()]; // colorData is the buffer in which data are returned
@SuppressWarnings("resource") // Because we don't bother to close this resource
SensorModes usSensorSide = new EV3UltrasonicSensor(usPortSide);
SampleProvider usValueSide = usSensorSide.getMode("Distance"); // colorValue provides samples from this instance
float[] usDataSide = new float[usValueSide.sampleSize()]; // colorData is the buffer in which data are returned
@SuppressWarnings("resource") // Because we don't bother to close this resource
SensorModes usSensorBack = new EV3UltrasonicSensor(usPortBack);
SampleProvider usValueBack = usSensorBack.getMode("Distance"); // colorValue provides samples from this instance
float[] usDataBack = new float[usValueBack.sampleSize()]; // colorData is the buffer in which data are returned
//Setup color sensor
// 1. Create a port object attached to a physical port (done above)
// 2. Create a sensor instance and attach to port
// 3. Create a sample provider instance for the above and initialize operating mode
// 4. Create a buffer for the sensor data
//SensorModes colorSensor = new EV3ColorSensor(csPort);
//SampleProvider colorSensor = colorSensor.getMode("ColorID"); // colorValue provides samples from this instance
//float[] sample = new float[colorValue.sampleSize()]; // colorData is the buffer in which data are returned
final SampleProvider colorSensor = cS.getRGBMode();
int sampleSize = colorSensor.sampleSize();
final float[] sample = new float[sampleSize];
// setup the odometer and display
final LightPoller lsPoller = new LightPoller(colorSensor, sample);
final UltrasonicPoller usPollerF = new UltrasonicPoller(usValueFront, usDataFront); // the selected controller on each cycle
final UltrasonicPoller usPollerS = new UltrasonicPoller(usValueSide, usDataSide); // the selected controller on each cycle
final Odometer odo = new Odometer(leftMotor, rightMotor, 30, true, usPollerF, lsPoller);
final Navigation navigator = new Navigation(odo);
// clear the display
t.clear();
{
odo.start();
usPollerF.start();
lsPoller.start();
(new Thread() {
public void run() {
USLocalizer usl = new USLocalizer(odo, usPollerF, USLocalizer.LocalizationType.FALLING_EDGE, navigator, wifi.getCorner());
LightLocalizer lsl = new LightLocalizer(odo,colorSensor,sample);
usl.doLocalization();
usPollerS.start();
lightMotor.rotate(85);
ObjectFinder of = new ObjectFinder(leftMotor, rightMotor, navigator, lsl, odo,
usPollerF, usPollerS, usl, lsPoller, resolution, wifi.getxHalf(), wifi.getyHalf(), clawMotor);
of.pointDriver();
}
}).start();
while (Button.waitForAnyPress() != Button.ID_ESCAPE);
System.exit(0);
}
}
}