• Banner

Stepper Motor NEMA-17 1.2A KS42STH40-1204A Robotics Bangladesh
  • Stepper Motor NEMA-17 1.2A KS42STH40-1204A Robotics Bangladesh

Stepper Motor NEMA-17 1.2A KS42STH40-1204A

RBD-2477

The KS42SH40-1204A is a high quality 1.2A NEMA-17 precision stepper motor that is commonly used in 3D printers, CNC machines and other applications that require precise control.

BDT 2,350.00
BDT 2,350.00 BDT 2,350.00 BDT 2,350.00 BDT 2,350.00
Tax included Tax excluded Tax included Tax excluded
BDT 2,350.00 Tax excluded
BDT 2,350.00 Tax included
BDT 0.00 Tax
BDT 2,350.00 Tax excluded
BDT 0.00 Tax
BDT 2,350.00 Tax included
Quantity
Last items in stock
2 Items

  Security policy

(edit with the Customer Reassurance module)

  Delivery policy

(edit with the Customer Reassurance module)

  Return policy

(edit with the Customer Reassurance module)

Description

DESCRIPTION

The KS42SH40-1204A is a high quality 1.2A NEMA-17 precision stepper motor that is commonly used in 3D printers, CNC machines and other applications that require precise control.

PACKAGE INCLUDES:

  • KS42STH40-1204A Motor
  • 4-wire cable 6-pin JST to 4-pin Dupont Female connector – 39″ long

KEY FEATURES OF STEPPER MOTOR NEMA-17 1.2A KS42STH40-1204A:

  • 4-wire bipolar operation
  • Compatible with NEMA17 standard
  • Dimensions: 42 x 42 x 40mm
  • Motor shaft diameter: 5mm
  • Step angle: 1.8 degrees
  • Step Count per revolution: 200
  • Standard Voltage: 2V
  • Phase current: 1.2A
  • Phase resistance: 1.7 ohm
  • Holding torque: 4N.m (minimum)
  • Weight: 290g

Stepper motors draw power to hold their current position even if they are not turning, so they tend to be power hungry.  They are best suited for being driven off a power supply rather than batteries unless you are using batteries with some serious  current capability.

Bipolar stepper motors require two full H-Bridges to drive them unlike unipolar steppers so they are best paired with a good bipolar driver to drive them.  These drivers have active current limiting built-in and allow for the motors to be driven from voltages much higher than their rated voltage (2V in this case) which gives improved performance.  What is important in these motors is to not exceed their maximum current capability (1.2A in this case), but you can run them at 12V or higher without any problems.

These drivers also allow for micro-stepping which allows you to move the stepper just a fraction of a full step.  The motor has 200 full steps for one rotation, but the DRV8825 driver for instance allows you to also use between 1/2 to 1/32 micro-steps, so the 200 full steps can become up to 6400 micro-steps for making one full rotation thus providing much greater precision if it is needed.

Motor Connections:KS42STH40-1204A Stepper Motor - Connector

These are bipolar stepper motors with 4 wires.  Direction of rotation is expressed as you are looking at the output shaft.  Positive commands turn the motor clockwise.  If the motor is rotating in the opposite direction than you intended, simply swap the leads to one coil only.

Cable colors may vary.  When looking at the connector on the motor, it is 6 pin, but only 4 of the pins are used.  Pins 1 & 3 are for one coil and pins 4 & 6 are the other coil.

OUR EVALUATION RESULTS:

These stepper motors are well made, have good torque and are very smooth in operation.  They work great with our DRV8825 Stepper Motor Driver down below.  We also have an optional steel bracket which is painted black that can be used for mounting the motor for some applications if you are building something from scratch.

The example software below uses the DRV8825 to drive this servo motor to show the basic mechanics of making one of these things go.  More information can be found on the DRV8825 page linked down below.DRV8825 Driver Minimal Setup Schematic

When using with an Arduino, the BasicStepperDriver.h library can be downloaded from GitHub which provides control for the DRV8825 and similar stepper drivers and is used in our program below.

The program is a simple test program.  It uses the driver module in the minimal hardware mode using just the DIR and STEP pins with the micro-stepping set to the default of full step as shown in the drawing to the right.

It moves the stepper in one direction for 5 rotations, rotates in the reverse direction for 1 rotation and then rotates for one rotation in discrete individual full steps. Ensure that the RST and SLP pins are pulled up to Vcc on the Arduino.  Also ensure that the current limiting has been adjusted for the motor you are using.

Stepper Motor KS42STH40-1204A / DRV8825 Test Program

/*
 * Exercise the DRV8825 Stepper Motor Driver Module
 *
 * This uses the minimal setup configuraiton with DIR connected to pin 8 and 
 * STEP connected to pin 9.
 *
 * The /Reset and /Sleep pins need to be pulled up to VCC
 * Step size is left at default of Full Step
 * This uses the BasicStepperDriver.h library which can be downloaded at GitHub
 */
#include <Arduino.h>
#include "BasicStepperDriver.h"

// Motor steps per revolution. Most steppers are 200 steps or 1.8 degrees/step
const int MOTOR_STEPS = 200;
// Set speed of rotation
const int RPM = 120;

// Using default step size. 1=full step, 2=half step, etc.
const int MICROSTEPS = 1;

// Define Arduino pins usedUses default full step
const int DIR_PIN = 8;
const int STEP_PIN = 9;

// Create stepper object in 2-wire basic configuration.  
BasicStepperDriver stepper(MOTOR_STEPS, DIR_PIN, STEP_PIN);

//===============================================================================
//  Initialization
//===============================================================================
void setup() {
    stepper.begin(RPM, MICROSTEPS);  // Uses default full step mode
}
//===============================================================================
//  Main
//===============================================================================
void loop() {
   int i;
     for(i=0; i<5; i++) stepper.rotate(360);  // 360 = degrees rotation

    stepper.rotate(-360);   // Rotate once in opposite direction

    for(i=0; i<200; i++){ // Rotate 1 step at a time, pause between steps
      stepper.move(1 * MICROSTEPS); // Steps are full steps
      delay(25);
    }
    delay(1000);
}
Product Details
RBD-2477
2 Items

Specific References

EAN13
2477
Comments (0)
Grade
No customer reviews for the moment.
9 other products in the same category:

Reference: RBD-0573

DC 5V Stepper Motor with ULN2003 Driver Board 28BYJ-48

(0)
Rated voltage: 5V DC Reduction Ratio: 64:1 Step Angle: 5.625° /64 Frequency: 100Hz Self-positioning Torque: &gt;34.3mN.m Friction torque: 600-1200 gf.cm Pull in torque: 300 gf.cm
BDT 199.00
BDT 199.00 tax incl.
BDT 199.00 tax excl.
BDT 199.00 tax excl.
BDT 199.00 tax incl.
BDT 199.00 tax incl.
BDT 0.00 Tax
BDT 199.00 tax excl.
BDT 199.00 tax excl.
BDT 0.00 Tax
BDT 199.00 tax incl.
More
In-Stock
In stock: 104

Reference: RBD-1379

Nema 23 23HS5628 2.8A Two Phase 6.35mm Shaft Stepper Motor With TB6600 Stepper Motor Driver

(0)
Nema 23 23HS5628 2.8A Two Phase 6.35mm Shaft Stepper Motor  TB6600 Stepper Motor Driver CNC and 3D Printer
BDT 7,420.00
BDT 7,420.00 tax incl.
BDT 7,420.00 tax excl.
BDT 7,420.00 tax excl.
BDT 7,420.00 tax incl.
BDT 7,420.00 tax incl.
BDT 0.00 Tax
BDT 7,420.00 tax excl.
BDT 7,420.00 tax excl.
BDT 0.00 Tax
BDT 7,420.00 tax incl.
More
In-Stock
In stock: 5

Reference: RBD-1390

Nema 17 Stepper Motor 17HS4401S

(0)
Nema17 Bipolar. Number of Phases: 2. Step Angle: 1.8°. Phase Voltage: 2.6Vdc. Phase Current: 1.7A. Resistance: 1.5Ω ±10%. Inductance: 2.8mH ±20% (1KHz). Number of Wire: 4 (100cm Length). Holding Torque: 43N.cm. Shaft Diameter: Ø5mm. Motor Length: 40mm. Mass: 270g.
BDT 1,350.00
BDT 1,350.00 tax incl.
BDT 1,350.00 tax excl.
BDT 1,350.00 tax excl.
BDT 1,350.00 tax incl.
BDT 1,350.00 tax incl.
BDT 0.00 Tax
BDT 1,350.00 tax excl.
BDT 1,350.00 tax excl.
BDT 0.00 Tax
BDT 1,350.00 tax incl.
More
In-Stock
In stock: 43

Reference: RBD-2574

Steel L-Bracket for NEMA 17 Stepper Motors

(0)
This sturdy black bracket is made from 3mm-thick coated steel and weighs about 100g. It is specifically designed to work with the typical face plate mounting holes of NEMA 17 stepper motors.
BDT 350.00
BDT 350.00 tax incl.
BDT 350.00 tax excl.
BDT 350.00 tax excl.
BDT 350.00 tax incl.
BDT 350.00 tax incl.
BDT 0.00 Tax
BDT 350.00 tax excl.
BDT 350.00 tax excl.
BDT 0.00 Tax
BDT 350.00 tax incl.
More
In stock
In stock: 28

Reference: RBD-2927

Stepper Motor Cable XH2.54 4Pin to PH2.0 6Pin – 1.5 Meter

(0)
Stepper Motor Cable XH2.54 4Pin to PH2.0 6Pin – 1.5 Meter
BDT 220.00
BDT 220.00 tax incl.
BDT 220.00 tax excl.
BDT 220.00 tax excl.
BDT 220.00 tax incl.
BDT 220.00 tax incl.
BDT 0.00 Tax
BDT 220.00 tax excl.
BDT 220.00 tax excl.
BDT 0.00 Tax
BDT 220.00 tax incl.
More
In stock
In stock: 55

Reference: RBD-2803

NEMA17 42BYGH40 2-Phase 4-Wire Stepper Motor for 3D Printers

(0)
This is NEMA17 stepper motor commonly used in 3D printers, CNC machines, and linear gantry systems.
BDT 1,390.00
BDT 1,390.00 tax incl.
BDT 1,390.00 tax excl.
BDT 1,390.00 tax excl.
BDT 1,390.00 tax incl.
BDT 1,390.00 tax incl.
BDT 0.00 Tax
BDT 1,390.00 tax excl.
BDT 1,390.00 tax excl.
BDT 0.00 Tax
BDT 1,390.00 tax incl.
More
In stock
In stock: 28

Reference: RBD-2069

All in One Motor Kit - 11 different motor set 3-9v DC motor

(0)
Round motor Vibration Motor Big toy motor Dynamo Motor Big solar motor Double Shaft toy motor Double shaft round motor DVD/Solar Motor Toy Motor, Double Shaft Geared Motor L Shaped Geared Motor
BDT 990.00
BDT 990.00 tax incl.
BDT 990.00 tax excl.
BDT 990.00 tax excl.
BDT 990.00 tax incl.
BDT 990.00 tax incl.
BDT 0.00 Tax
BDT 990.00 tax excl.
BDT 990.00 tax excl.
BDT 0.00 Tax
BDT 990.00 tax incl.
More
In-Stock
In stock: 45

Reference: RBD-2926

NEMA Stepper Motor Cable with Dupont Connector Pure Copper – 1 Meter

(0)
NEMA Stepper Motor Cable with Dupont Connector Pure Copper – 1 MeterCompatible with Nema Motor
BDT 150.00
BDT 150.00 tax incl.
BDT 150.00 tax excl.
BDT 150.00 tax excl.
BDT 150.00 tax incl.
BDT 150.00 tax incl.
BDT 0.00 Tax
BDT 150.00 tax excl.
BDT 150.00 tax excl.
BDT 0.00 Tax
BDT 150.00 tax incl.
More
In stock
In stock: 55

Reference: RBD-0817

Nema 23 23HS5628 Stepper Motor

(0)
Step Angle Step Angle: 1.8 ° Current: 2.8 A/Phase Holding Torque: 10.1 N-cm Detent torque: 3.6 N.cm (Maximum) Lead Wires: 4 Shaft diameter: 8.00 mm
BDT 2,990.00
BDT 2,990.00 tax incl.
BDT 2,990.00 tax excl.
BDT 2,990.00 tax excl.
BDT 2,990.00 tax incl.
BDT 2,990.00 tax incl.
BDT 0.00 Tax
BDT 2,990.00 tax excl.
BDT 2,990.00 tax excl.
BDT 0.00 Tax
BDT 2,990.00 tax incl.
More
In-Stock
In stock: 20

Follow us on Facebook