Stepper Motor and TB6600 driver with Arduino தமிழில்
Tamiltronics Tamiltronics
4.85K subscribers
11,658 views
345

 Published On Apr 8, 2022

The TB6600 microstepping driver is built around the Toshiba TB6600HG IC and it can be used to drive two-phase bipolar stepper motors. With a maximum current of 3.5 A continuous, the TB6600 driver can be used to control quite large stepper motors .

In this Video, you will learn how to control a stepper motor with the TB6600 microstepping driver and Arduino. This driver is easy to use and can control large stepper motors like a JK57HS76

I will show you how you can use this stepper motor driver without an Arduino library. This example can be used to let the motor spin continuously. In the second example, we will look at how you can control the speed, number of revolutions, and spinning direction of the stepper motor.

Arduino code:
void setup()
{
pinMode (2,OUTPUT);
pinMode (3,OUTPUT);
pinMode (8,OUTPUT);
digitalWrite (2,LOW);
}

void loop() {
digitalWrite(8,LOW);
digitalWrite(3,LOW);
digitalWrite(3,HIGH);
delayMicroseconds (60);
}

show more

Share/Embed