HIGH CURRENT MOTOR DRIVER H-BRIDGE MODULE IBT-2 MENGGUNAKAN ARDUINO


Driver motor type ini ,untuk teman2 yg mau kontrol motor DC yang High Current.Pada driver motor DC ini dapat  mengeluarkan  arus  hingga  43A,  dengan  memiliki  fungsi  PWM.  Tegangan  sumber  DC  yang  dapat  diberikan  antara  5.5V-27V DC,sedangkan  tegangan input level  antara  3.3V - 5V DC , driver motor  ini menggunakan  rangkaian full  H-bridge dengan  IC  BTS7960  dengan  perlindungan  saat terjadi panas dan arus berlebih.

MODULE IBT-2 BTS7960 ATAS
Tampilan Atas

MODULE IBT-2 BTS7960 BAWAH
Tampilan Bawah
Detail Pin Input
  1. RPWM = Input PWM Forward Level ,Aktif High
  2. LPWM = Input PWM Reverse Level ,Aktif High
  3. R_EN   = Input Enable Forward Driver, Aktif High
  4. L_EN   = Input Enable Reverse Driver, Aktif High
  5. R_IS     = Forward Drive ,Side current alarm output
  6. L_IS     = Reverse Drive  ,Side current alarm output
  7. Vcc      = +5 V Power Supply Mikrokontroler
  8. Gnd     = Gnd   Power Supply Mikrokontroler
Detail Pin Output
  1. W-  = Di hubungkan ke Motor DC (V-)
  2. W+= Di hubungkan ke Motor DC (V+)
  3. B+ = Tegangan Input V+ Motor
  4. B-   = Tegangan Input V-  Motor
SPESIFIKASI
  • Double BTS7960 high current (43A) H-bridge drivers
  • Input voltage: 6V-27V
  • Model: IBT-2
  • Maximum current: 43A
  • Input level: 3.3-5V
  • Control mode: PWM or level
WIRING DIAGRAM 



CONTOH PROGRAM

/*******************************************************
Program  : MOTOR DRIVER H-BRIDGE MODULE IBT-2
Chip     : Arduino Uno
Sumber   : www.hessmer.org
Modified : www.Labelektronika.com
********************************************************/

#define POTENSIO_PIN  0 // Pin Potentiometer A0
#define RPWM_PIN      5 // Digital Pin 5 Arduino Arduino
#define LPWM_PIN      6 // Digital Pin 6 Arduino Arduino

void setup()
{
pinMode(RPWM_PIN, OUTPUT);
pinMode(LPWM_PIN, OUTPUT);
}

void loop()
{
// sensor value range 0 to 1023
int sensorValue = analogRead(POTENSIO_PIN);

// reverse rotation
if (sensorValue < 512)
{
int reversePWM = -(sensorValue - 511) / 2;
analogWrite(LPWM_PIN, 0);
analogWrite(RPWM_PIN, reversePWM);
}

else{
// forward rotation
int forwardPWM = (sensorValue - 512) / 2;
analogWrite(LPWM_PIN, forwardPWM);
analogWrite(RPWM_PIN, 0);
}
}

Subscribe to receive free email updates:

18 Responses to "HIGH CURRENT MOTOR DRIVER H-BRIDGE MODULE IBT-2 MENGGUNAKAN ARDUINO"

  1. 1modul hanya untuk 1 motor ya mas ? thanks

    BalasHapus
  2. iya mas, untuk module ini untuk Driver single untuk 1 motor,

    BalasHapus
  3. hello
    can you please send me diagram for bts7960 H-bridge without speed controller .since I am trying to control motors via Bluetooth on android mobile .my email is salimbakhsh@yahoo.com

    BalasHapus
  4. just remove potensio meter and for adjust pwm with sensor value change with value

    BalasHapus
  5. i am mechanical engineering student and its been week since I am looking to find way out .but didnt find any .if you email me the diagram with codes that would be very much helpful .i didnt even understand your point pwm adjustment .my email is salimbakhsh@yahoo.com

    BalasHapus
  6. i am trying to control two bts7960 drivers with Bluetooth module hc05 on android phone

    BalasHapus
    Balasan
    1. original code :
      analogWrite(LPWM_PIN, forwardPWM);
      analogWrite(RPWM_PIN, reversePWM);
      change :
      forwardPWM and reversePWM with value 0-255 ,255 maximum high speed

      Hapus

  7. void loop()
    {
    // sensor value range 0 to 1023
    int sensorValue = analogRead(POTENSIO_PIN);

    // reverse rotation
    if (sensorValue < 512)
    {
    int reversePWM = -(sensorValue - 511) / 2;
    analogWrite(LPWM_PIN, 0);
    analogWrite(RPWM_PIN, reversePWM);
    }

    else{
    // forward rotation
    int forwardPWM = (sensorValue - 512) / 2;
    analogWrite(LPWM_PIN, forwardPWM);
    analogWrite(RPWM_PIN, 0);
    }
    }

    change :
    variable forwardPWM and reversePWM with value 0-255 from bluethooth ,255 maximum speed

    BalasHapus
  8. thank you very much how about adding bluetooth hc06 code in given code ?

    BalasHapus
  9. how to change analogRead(POTENSIO_PIN) to read pulseIn from rc receiver..

    BalasHapus
  10. RC Receiver only module for receiver data, arduino receiver data 0-255 for adjust pwm motor

    BalasHapus
  11. selamat malam, bisakah anda membantu saya? saya seorang mahasiswa yang sekarang sedang mengerjakan tugas akhir. saya terkendala dengan membuat sinyal sinus murni menggunakan h-bridge. bisakah anda memberikan sedikit saran untuk saya ?
    terima kasih sebelumnya.

    BalasHapus
  12. bang punya channel youtube gak ??kurang ngerti soalnya kalo cuman baca doang hehe

    BalasHapus
    Balasan
    1. ada :), tapi kontennya masih minim https://www.youtube.com/labelektronika

      Hapus
  13. kalau reverse dan forward menggunakan push button rqngkqiqn menjadi seperti apa? dan codenya berubah bagaimana? terimakasih.

    BalasHapus
    Balasan
    1. tinggal gabungkan antara program ini dengan program baca tombol

      Hapus
  14. Bikin tutorial mobil2an pakai dobel ibt2 pak.. pakai joystick...
    Biar rame yutubnya

    BalasHapus