ทดสอบบอร์ด bts7960 กับ รีโมท RC สำหรับหุ่นยน์&รถตัดหญ้า | ทำเล่นไปเรื่อย

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 มิ.ย. 2020
  • #ทดสอบบร์ด IBT-2กับมอเตอร์24v 250w
    #ทดสอบบอร์ด bts7960 กับ รีโมท RC
    #ทำเล่นไปเรื่อย
    #Test bts7960 speed controller with rc remote control and dc motor 24v 250w
  • ยานยนต์และพาหนะ

ความคิดเห็น • 40

  • @PitakTantargul
    @PitakTantargul 4 ปีที่แล้ว

    ผมนี่กดสั้นกระดิ่งรอเลยครับ ^_^

  • @maulanawahyudi7127
    @maulanawahyudi7127 2 ปีที่แล้ว

    I apologize for not understanding your language, so in conclusion can I use the motor driver for my MY1016Z2 motor?

  • @neycavalcante8756
    @neycavalcante8756 2 ปีที่แล้ว +3

    คุณมีเจตนาอะไรที่ไม่เปิดเผยรหัสและรายละเอียดอื่น ๆ ของโครงการของคุณ? ฉันไม่เข้าใจว่าทำไมมันเป็นวัฒนธรรมของผู้คนในประเทศของคุณหรือเป็นเพียงคุณ?

  • @gillesmaurice6692
    @gillesmaurice6692 3 ปีที่แล้ว

    สวัสดีฉันเขียนจดหมายถึงคุณจากฝรั่งเศสคุณสามารถบอกได้ไหมว่าการ์ดใบไหนอยู่ระหว่างเครื่องรับและบัตร bts 7960 ขอบคุณล่วงหน้าวันที่ดี

  • @bikershopbikeaccessories587
    @bikershopbikeaccessories587 3 ปีที่แล้ว

    Reciever ต่อสัญญาณไปที่บอร์ด bts7960 โดยตรงเลยใช่ไหมครับ/ การต่อสายสัญญาณเป็นแบบไหนครับ

  • @CertsUAsPilot
    @CertsUAsPilot 2 ปีที่แล้ว +1

    You did the demo with the full throtle tick thrown full high and full low and that makes it hard to tell if the motor speed is proportional to stick movement. The question I have is in this setup can the motor speed be controlled as a single speed or variable speed? Thanks

    • @salvatorebarbaro5862
      @salvatorebarbaro5862 2 ปีที่แล้ว +1

      an esc for DC motors 'brusched esc' in theory should emit an output signal composed of a wave, more or less square, at a fixed frequency with modulation of the duty cycle proportional to the ppm in output from the channel of the RC receiver. I say in theory because in some ESCs, in the outputs towards the moTors there are filtering capacitors and also recirculating diodes inside the Mosfets themselves that could alter the pure signal, so in the end, instead of many square waves, a single modulated wave would be obtained. only on the wave crests, therefore an almost continuous signal and therefore fixed or slightly variable speed on the motors. the best and rather easy solution to implement is to use a microcontroller like Arduino which also has libraries ready for the BTS7960 modules, to convert the ppm RC receiver signal into PWM and DIR + Enable to better control the power module and take advantage of the variable speed

    • @salvatorebarbaro5862
      @salvatorebarbaro5862 2 ปีที่แล้ว

      /*
      ARDUINO 1 Board No 1 for right motor
      IBT-2 pin 1 (RPWM) to Arduino pin 5(PWM)
      IBT-2 pin 2 (LPWM) to Arduino pin 6(PWM)
      IBT-2 pins 3 (R_EN), 4 (L_EN), 7 (VCC) to Arduino 5V pin
      IBT-2 pin 8 (GND) to Arduino GND
      IBT-2 pins 5 (R_IS) and 6 (L_IS) not connected
      ARDUINO 1 Board No 2 for left motor
      IBT-2 pin 1 (RPWM) to Arduino pin 8(PWM)
      IBT-2 pin 2 (LPWM) to Arduino pin 9(PWM)
      IBT-2 pins 3 (R_EN), 4 (L_EN), 7 (VCC) to Arduino 5V pin
      IBT-2 pin 8 (GND) to Arduino GND
      IBT-2 pins 5 (R_IS) and 6 (L_IS) not connected
      */

      int RPWM1_Output = 5; // Arduino PWM output pin 5; connect to IBT-2 pin 1 (RPWM) MOTOR1
      int LPWM1_Output = 6; // Arduino PWM output pin 6; connect to IBT-2 pin 2 (LPWM) MOTOR1
      int RPWM2_Output = 8; // Arduino PWM output pin 8; connect to IBT-2 pin 1 (RPWM) MOTOR2
      int LPWM2_Output = 9; // Arduino PWM output pin 9; connect to IBT-2 pin 2 (LPWM) MOTOR2
      int motorSpeedA = 0;
      void setup()
      {
      pinMode(A0,INPUT) ; // connected to CH2 forward and reverse
      pinMode(A1,INPUT); // connected to CH1 turn Left and right
      Serial.begin(9600);
      pinMode(RPWM1_Output, OUTPUT); // Rigth side
      pinMode(LPWM1_Output, OUTPUT);
      pinMode(RPWM2_Output, OUTPUT); // Left side
      pinMode(LPWM2_Output, OUTPUT);
      }
      void loop()
      {
      int rcValue1 = pulseIn(A0 , HIGH);
      int rcValue2 = pulseIn(A1 , HIGH);
      if (rcValue1 >= 1500 and rcValue1 < 1900) // Reverse
      {
      motorSpeedA = map(rcValue1 , 1500, 1900, 1 , 255);
      analogWrite(RPWM1_Output, motorSpeedA); // POSITIVO MOTORE COLLEGATO ALLA USCITA MOTORE POSITIVO DEL DRIVER
      analogWrite(LPWM1_Output, 0);
      analogWrite(RPWM2_Output, 0); // POSITIVO MOTORE COLLEGATO ALLA USCITA MOTORE POSITIVO DEL DRIVER
      analogWrite(LPWM2_Output, motorSpeedA);
      }
      else if (rcValue1 >=1000 and rcValue1 = 1000 and rcValue2 = 1500 and rcValue2

  • @josephjojo756
    @josephjojo756 ปีที่แล้ว

    How to connect two same 24v DC motor to a single controller to handle speed and direction?

  • @surachetsanthep1936
    @surachetsanthep1936 2 ปีที่แล้ว

    รบกวนขอรูปการต่อวงจรหน่อยได้มั๊ยครับว่าอะไรเข้าจุดไหนบ้างครับ ขอบคุณครับ

  • @pandora7038
    @pandora7038 3 ปีที่แล้ว

    ความเร็วเร่งเบาตามคันโยกไหมครับ หรือ ระดับเดียว

  • @Diy-gh6lt
    @Diy-gh6lt 2 ปีที่แล้ว

    ไส่กับเเบต12โวลรถมอไซได้มั้ยครับ

  • @wasd345pg2
    @wasd345pg2 2 ปีที่แล้ว

    พี่ครับ bts 7960 ของผมสั่งมา เหมือนสัญญาRpwm มันไม่ออกครับ มีวิธีเช็ค bts ไหมครับ ผมเอามาทำโปรเจ็คจบกัน รบกวนขอคำแนะนำหน่อยนะครับ🙏🏻😢

  • @gutmobile
    @gutmobile 2 ปีที่แล้ว

    ขอดูตรงช่องคอนเน็คเตอร์หน่อยได้ไหมครับว่ามีอุปกรณ์อะไรบ้าง

  • @praiwans7510
    @praiwans7510 3 ปีที่แล้ว

    พอมีวงจรต่อจากรีชีฟเข้าbtsไหมครับไม่อยากใช้arduino

  • @canilvonhauszuruck-pastora8411
    @canilvonhauszuruck-pastora8411 ปีที่แล้ว

    How to control two DC motors with this drive?

  • @marioignacio7283
    @marioignacio7283 3 ปีที่แล้ว

    Está usando 2 esc?

  • @muratdal8516
    @muratdal8516 2 ปีที่แล้ว

    Hocam merhabalar ıbt2 devre var 775 motor bağlantısı yapicam kafama.takilan soru şu RC alıcıdan 3 çıkış var + - sinyal bu kabloları ıbt2 hangi pimlere bağlantısı olacak bilgi verirseniz sevinirim

  • @ArtFc-rq1he
    @ArtFc-rq1he 3 ปีที่แล้ว +1

    รบกวนวาดรูปแบบการต่อสายให้ดูหน่อยครับแบบละเอียดนิดนะครับผมไม่มีความรู้ด้านนี้เท่าไหร่ครับรีซีฟต่อเข้าบอร์ดขับยังไงครับ

  • @wattanapremjit1935
    @wattanapremjit1935 2 ปีที่แล้ว +1

    ควรจะอธิบายหลักการทำงานด้วยครับ

  • @vutrung8495
    @vutrung8495 3 ปีที่แล้ว

    How do you do it Can you draw the connection for me?

  • @user-wi2kv8bz8f
    @user-wi2kv8bz8f 2 ปีที่แล้ว +1

    ต่อผ่านเซอโวชัยมัย

  • @AbdullahAlMamun-nl7zj
    @AbdullahAlMamun-nl7zj ปีที่แล้ว

    where is the circuit or connection diagram??

  • @CertsUAsPilot
    @CertsUAsPilot 2 ปีที่แล้ว

    What is that black thing between the receicer and the IBT-7960 unit?

    • @salvatorebarbaro5862
      @salvatorebarbaro5862 2 ปีที่แล้ว +2

      I think it is using an besc for DC motors 'brushed esc' costing a few dollars on aliexpress, the output of the BESC instead of directly driving a small motor drives the inputs of the bts7960, obviously it feeds the BESC with no more than 5 volts for not damage the inputs of the bts7960. in principle it works fine as a system but it would be better to use a microcontroller like arduino to create the interface :)

    • @CertsUAsPilot
      @CertsUAsPilot 2 ปีที่แล้ว +1

      @@salvatorebarbaro5862 thanks

    • @pushpakdeshmukh9106
      @pushpakdeshmukh9106 ปีที่แล้ว

      @@salvatorebarbaro5862 how can I operate 48V 1200watt motor wirelessly , plz guide.

    • @salvatorebarbaro5862
      @salvatorebarbaro5862 ปีที่แล้ว

      @@pushpakdeshmukh9106 you intend brushed motor or brushless ? 48V - 1200W are 25 Amp, for brushed motors : some H Bridges can handle 25 Amp 50 volts, a lot depends on whether you then have to control them via an RC remote control, in this case there are 2 alternatives, an H bridge that accepts the PPM signal of an RC receiver as input, or an arduino that converts the PPM signal of the receiver into PWM signal to drive the H Bridge . A little more difficult to manage a controller for Brushless motors at 48V , which hardly have an input for PPM RC signals, often only have a 0-5V input which comes from the throttle knob. in that case, always with an arduino-type microcontroller, the PPM signal must be converted into a 0-5 Volt signal and applied to the input of the BR controller instead of the knob

  • @user-dl4fh3ws8u
    @user-dl4fh3ws8u 3 ปีที่แล้ว

    ใช่แบตกี่เซลล์ครับ

  • @user-ff2nj8zr1v
    @user-ff2nj8zr1v 2 ปีที่แล้ว

    ผมลองต่อ แล้ว พอเสียบไฟเข้า มันทำงานเลยมอเตอรขอคำแนะนำหน่อยครับ

    • @narkornchaiwong9114
      @narkornchaiwong9114 11 หลายเดือนก่อน

      หน้าจะมีตัวไดตัวหนึ่งเสียหละครับแบบนั้นครับ

  • @marioignacio7283
    @marioignacio7283 3 ปีที่แล้ว

    Mostra o esquema.

  • @rj.sur.jhankar500kview4
    @rj.sur.jhankar500kview4 2 ปีที่แล้ว

    Please shear circuit buy link

  • @nizamaismailismailraziah8722
    @nizamaismailismailraziah8722 2 ปีที่แล้ว

    Receiver wire signal black anda red go to where?

  • @salvatorebarbaro5862
    @salvatorebarbaro5862 2 ปีที่แล้ว

    for interface ( rc receiver > brushed esc > ibt2 ) ? :P hi hi hi

  • @hariprashanth46
    @hariprashanth46 2 ปีที่แล้ว

    Please make condition video

  • @RX-fo9px
    @RX-fo9px 3 ปีที่แล้ว +1

    ควบคุมมอเตอร์ สองตัวซ้าย-ขวา ได้ไมครับ

    • @icarjazz
      @icarjazz  3 ปีที่แล้ว +1

      ได้ครับ แต่ต้องใช้วงจรนี้2ตัว

    • @neng160164
      @neng160164 3 ปีที่แล้ว

      @@icarjazz พอจะขอวงจรได้เปล่าครับ สนใจทำรถบังคับเล่นครับ ขอบคุณครับ