Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1x Arduino
1x H-Brücke SN754410 (DatesheetDatasheet)
1x DC Motor 

Image RemovedImage Added

Code Block
languagec#
titleExampled Example Motor
collapsetrue
#define MOTOR_PIN_A 5
#define MOTOR_PIN_B 6
void setup() 
{
  pinMode(MOTOR_PIN_A, OUTPUT);
  pinMode(MOTOR_PIN_B, OUTPUT);
}
void loop() 
{
  //One direction
  digitalWrite(MOTOR_PIN_A, HIGH);
  digitalWrite(MOTOR_PIN_B, LOW);
  delay(5000);
  
  //The other direction
  digitalWrite(MOTOR_PIN_A, LOW);
  digitalWrite(MOTOR_PIN_B, HIGH);
  delay(5000);
}

...