Loading... Please wait...

Prices in USD

L298N Dual H Bridge DC Stepper Motor Controller Module for Arduino

Hover over image to zoom

  • Image 1
  • L298 Stepper Controller Connections
  • Connecting up Arduino, stepper controller and bipolar stepper motor
  • Wiring 6 or 8 wire motors

Varies
$3.95
SKU:
CIC-0000010
Weight:
1.25 Ounces
Shipping:
Calculated at checkout
Gift Wrapping:
Options available

 Product Description

L298N Dual H Bridge DC Stepper Motor Drive Controller Board Module For Arduino

The L298 Stepper Controller makes it easy to  drive either two DC motors or a bipolar stepper motor. This is a very high quality board and is very compact for designs where space really matters.

Features : 
  • Double H bridge drive

  • Chip L298N (ST NEW)

  • Logical voltage 5V

  • Drive voltage 5V-35V

  • Logic current 0mA-36mA

  • Drive current 2A(MAX single bridge)

  • Storage temperature -20 to +135

  • Max power 25W

  • Weight 30g 

  • Small size 43*43*27mm ( approx 1.75" x 1.75" x 1")

  • Compatible with L297/L298 driver


    Note

    This module has a built-in 5v power supply for external use. Drive voltage is 7v-35v. DO NOT input voltage to +5v supply interface - this is OUTPUT only.

Connections

There is a tutorial here.

Library

Available here: Stepper Library

 

 Product Documents



/* 

 Stepper Motor Control - one revolution

 

 This program drives a unipolar or bipolar stepper motor. 

 The motor is attached to digital pins 8 - 11 of the Arduino.

 

 The motor should revolve one revolution in one direction, then

 one revolution in the other direction.  

 

  

 Created 11 Mar. 2007

 Modified 30 Nov. 2009

 by Tom Igoe

 

 */



#include 



const int stepsPerRevolution = 200;  // change this to fit the number of steps per revolution

                                     // for your motor



// initialize the stepper library on pins 8 through 11:

Stepper myStepper(stepsPerRevolution, 8,9,10,11);            



void setup() {

  // set the speed at 60 rpm:

  myStepper.setSpeed(60);

  // initialize the serial port:

  Serial.begin(9600);

}



void loop() {

  // step one revolution  in one direction:

   Serial.println("clockwise");

  myStepper.step(stepsPerRevolution);

  delay(500);

  

   // step one revolution in the other direction:

  Serial.println("counterclockwise");

  myStepper.step(-stepsPerRevolution);

  delay(500); 

}



 Find Similar Products by Category

 

What's News

newsletter

Copyright 2016 oddWires. All Rights Reserved.
 Sitemap | oddWires

Click the button below to add the L298N Dual H Bridge DC Stepper Motor Controller Module for Arduino to your wish list.

Your Shopping Cart

You do not have any item in your cart.

Close

Selected For Comparision