• PLC 아두이노 라즈베리파이 마이크로 스테핑모터 드라이버 TB6600 업그레이드

PLC 아두이노 라즈베리파이 마이크로 스테핑모터 드라이버 TB6600 업그레이드

9,500 9,500
배송정보
3,000원 (조건부배송) 지역별 추가배송 주문시결제(선결제)
택배 / 화물배송 / 방문수령 / 퀵배송

Features 


Support 8 kinds of current control 

Support 7 kinds of micro steps adjustable

The interface adopts high-speed optocoupler isolation

Automatic semi-flow to reduce heat

Large area heat sink

Anti-high-frequency interference ability

Input anti-reverse protection

Overheat, over current and short circuit protection

 

Specification

 

Input Current: 0~5A

Output Current: 0.5~4.0A

Control Signal: 3.3~24V

Power (MAX): 160W

Micro Step: 1, 2/A, 2/B, 4, 8, 16, 32

Temperature: -10~45℃

Humidity: No Condensation

Weight: 0.2 kg

Dimension: 96 * 71 * 37 mm

 

 

 

int PUL=7; //define Pulse pin

int DIR=6; //define Direction pin

int ENA=5; //define Enable Pin

void setup() {

  pinMode (PUL, OUTPUT);

  pinMode (DIR, OUTPUT);

  pinMode (ENA, OUTPUT);

}

void loop() {

  for (int i=0; i<6400; i++)    //Forward 5000 steps

  {

    digitalWrite(DIR,LOW);

    digitalWrite(ENA,HIGH);

    digitalWrite(PUL,HIGH);

    delayMicroseconds(50);

    digitalWrite(PUL,LOW);

    delayMicroseconds(50);

  }

  for (int i=0; i<6400; i++)   //Backward 5000 steps

  {

    digitalWrite(DIR,HIGH);

    digitalWrite(ENA,HIGH);

    digitalWrite(PUL,HIGH);

    delayMicroseconds(50);

    digitalWrite(PUL,LOW);

    delayMicroseconds(50);

  }

}

 

Notice

 

This shopping mall do not give advice and reference of all products.  Especially we try to support data, user guide based on manufacture. So languages are differ from manufactures. This condition is not reason to return, and exchange.


비밀번호 인증

비밀번호를 입력해 주세요.

확인