|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I hate Autonomous programming! Why is it so sporadic?
Code:
public void autonomous() {
xmove=.25;
autonomousTimer.start();
autonomousTimer.reset();
while(true){
if(photoSwitch.get()){
topLeft.set(xmove);
topRight.set(-xmove);
bottomLeft.set(xmove);
bottomRight.set(-xmove);
}
if(!photoSwitch.get())
{
topLeft.set(0);
topRight.set(0);
bottomLeft.set(0);
bottomRight.set(0);
}
if(autonomousTimer.get()>15.0){
topLeft.set(0);
topRight.set(0);
bottomLeft.set(0);
bottomRight.set(0);
break;
}
Watchdog.getInstance().feed(); //Gotta feed that watchdog
}
}
|
|
#2
|
||||
|
||||
|
Re: I hate Autonomous programming! Why is it so sporadic?
Have you checked the calibration on the photoreceptor? We've found them to be quite finicky, especially when you move to a new surface (i.e. some carpets are more reflective than others, and the sensors need retuning).
Try getting the robot up on blocks and letting it run, blocking and unblocking the sensors with your hand. I don't see anything particularly wrong with your program itself - the error is probably coming from other sources. |
|
#3
|
|||
|
|||
|
Re: I hate Autonomous programming! Why is it so sporadic?
So I've noticed that the switch glows green, orange, or no color at all, depending on the surface. How should it be calibrated?
edit: yes, it was a calibration issue. The light has to glow green in order for the switch to be closed. I thought it was supposed to glow between nothing and orange. Last edited by sp33chy : 18-02-2011 at 22:18. |
|
#4
|
||||
|
||||
|
Re: I hate Autonomous programming! Why is it so sporadic?
No colour at all? That's a new one to me.
Green means that the light is not being reflected. Yellow (the light in the middle) means that the light is being reflected. Orange means that the receptor is being overloaded with light. It shouldn't be a problem, but it's not too healthy for the sensor. With the sensor at the desired distance from the floor, twist the dial on the front (with a screwdriver) until it turns yellow, then turn it back just enough to be green. If you move it over the tape at the same distance away, it should turn yellow. If you move it back onto the non-reflective surface and it is still yellow, it needs to be dialed back just a bit. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|