front Sharp IR sensor, I wait two ultrasonic range finder to put in place.
http://i615.photobucket.com/albums/tt240/rockclodbuster/autoclod5.jpg
the front axle (exacly the same in the rear end) from front, you can see the shock, the batterie and the front steering servo:
http://i615.photobucket.com/albums/tt240/rockclodbuster/autoclod6.jpg
from bottom, you can see the motor and the suspention linkage:
http://i615.photobucket.com/albums/tt240/rockclodbuster/autoclod7.jpg
and finaly, the speed control:
http://i615.photobucket.com/albums/tt240/rockclodbuster/autoclod8.jpg
But now I have a probleme, My pololu micro servo controler is freaking. Normaly, the yellow led is on and the green led is flashing really quikly (almost steady on) a few second after power up. Now, the yellow led trun on, then it turn off and the green turn on but the controler continu working correctly. But here the probleme, many time the green turn off, the yellow turn on, the red flash one time per seconde and the controler stop working (motor stop, servo go to any position). some time it don’t do this for many minute, other time it swich for green to yellow/red so fast the led doesn’t actualy turn on completely before they turn off. What can cause this??? oh yes, one more thing, the Tx led on the arduino don’t flash.
here my code[code]int sensor0 = 0;
int sensor1 = 1;
int sensor2 = 2;
int x = 0;
int y = 0;
int z = 0;
void setup()
{
Serial.begin(4800);
delay(10);
Serial.print(128,BYTE); //start
Serial.print(1,BYTE); //device ID
Serial.print(0,BYTE); //command; set parameters
Serial.print(0,BYTE); //servo num: servo 0
Serial.print(69,BYTE); // servo0 on, fwd, range 90
delay(10);
Serial.print(128,BYTE); //start
Serial.print(1,BYTE); //device ID
Serial.print(0,BYTE); //command; set parameters
Serial.print(1,BYTE); //servo num: servo 1
Serial.print(79,BYTE); // servo1 on, fwd, range 90
delay(10);
Serial.print(128,BYTE); //start
Serial.print(1,BYTE); //device ID
Serial.print(0,BYTE); //command; set parameters
Serial.print(1,BYTE); //servo num: servo 2
Serial.print(111,BYTE); // servo2 on, rev, range 90
delay(10);
}
void loop()
{
x = ((600-analogRead(sensor1))/5.3);
y = ((((analogRead(sensor0)*0)+(analogRead(sensor1)*1000)+(analogRead(sensor2)*2000))/(analogRead(sensor0)+analogRead(sensor1)+analogRead(sensor2)))/4);
Serial.print(128,BYTE); //start
Serial.print(1,BYTE); //device ID
Serial.print(2,BYTE); //command; set position
Serial.print(0,BYTE); //servo num: servo 0
Serial.print(x,BYTE); // servo0 position
delay(10);
Serial.print(128,BYTE); //start
Serial.print(1,BYTE); //device ID
Serial.print(2,BYTE); //command; set position
Serial.print(1,BYTE); //servo num: servo 1
Serial.print(y,BYTE); // servo1 position
delay(10);
}
[/code]