Teensy: One Motor

// 1213MotorDriver

// L293D Motor Driver by Brian Patton

const int LeftA = 9;  // Left motor control pin A
const int LeftB = 10;  // Left motor control pin B

int Dlay = 1000;


void setup() {
  pinMode(LeftA, OUTPUT); // Set direction of the motor control pin
  pinMode(LeftB, OUTPUT); // Set direction of the motor control pin
}

void loop() {
  digitalWrite(LeftA, LOW);
  digitalWrite(LeftB, HIGH);

}