Arduino Motor Shield Rev3

28,95

Control 2 DC or 1 stepper motor with this shield.

Out of Stock

Receive stock notification email?

SKU: A000079-410 Categories: , , Tags: , , , , , Send:

Description

Arduino Motor Shield Rev3 is based on the L298 chip, which is a dual full-bridge driver designed to control loads such as relays, solenoids, DC and stepper motors. It can control two DC motors with your Arduino board independently of each other in terms of the speed and direction of each. The shield is TINKERKIT compatible, which means you can quickly create projects by connecting TINKERKIT modules.

Arduino Motor Shield Rev3 Specifications:
– Works on: 5V-12V
– Motor controller: L298P
– 2 DC motors or 1 stepper motor
– Max 2A per channel or 4A max (with external power supply)

More info Arduino motor shield

Arduino code example:

#include 
 
 const int stepsPerRevolution = 48;  // change this to fit the number of steps per revolution
                          // for your motor
 
 // initialize the stepper library on the motor shield
 Stepper myStepper(stepsPerRevolution, 12,13);     
 
 // give the motor control pins names:
 const int pwmA = 3;
 const int pwmB = 11;
 const int brakeA = 9;
 const int brakeB = 8;
 const int dirA = 12;
 const int dirB = 13;
 
 int x = 0;
void setup() {
 Serial.begin(9600);
 // set the PWM and brake pins so that the direction pins  // can be used to control the motor:
pinMode(pwmA, OUTPUT);
 pinMode(pwmB, OUTPUT);
 pinMode(brakeA, OUTPUT);
 pinMode(brakeB, OUTPUT);
 digitalWrite(pwmA, HIGH);
 digitalWrite(pwmB, HIGH);
 digitalWrite(brakeA, LOW);
 digitalWrite(brakeB, LOW);
 
 // initialize the serial port:
 Serial.begin(9600);
 // set the motor speed (for multiple steps only):
 myStepper.setSpeed(2);
 }

 
 void loop() {
 
  myStepper.step(48);
  myStepper.step(-48);

  delay(2000);

 }

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shipping within the Netherlands

This product will be delivered via PostNL parcel post.
- €6.95 shipping costs for orders under €100.
- Orders above € 100,- will be free of charge sent.
- You can also use parcel convenience. More information about parcel convenience

  • Ordered before 16:30 PM on workdays, shipped the same day!
    Click here for costs outside the Netherlands.
  • Product question?

      Your Name (required)

      Your Email (required)

      your question