Hey I built a robot on some tank treads and used this circuit
and this code
int dcr = 11;
int dcl = 8;
void setup()
{
pinMode(dcr, OUTPUT);
pinMode(dcl, OUTPUT);
}
void loop()
{
digitalWrite(dcr, HIGH);
digitalWrite(dcl, HIGH);
}
All i want it do do is drive forward and turn for my curcuit the 5v the supplies the transistors is the 5v pin and the other two are pins 11 and 8 so my problem is my arduino isnt giving off 5v on pin 11 and 8 how do i fix this