Convert Cheap Dc Motor to a Precision Servo #1

แชร์
ฝัง

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

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

    Great stuff!

  • @malcolmstewart7757
    @malcolmstewart7757 6 ปีที่แล้ว +1

    The Sensor in not incorrect the a reason for the sensor arrangement is on your encoder wheel you have one slot longer, this is used as a home position. I used to work on a WANG Matrix Printer in the early 90's model 5535. This is how I suspect you could use this sensor.

  • @hemswaroopraorane3424
    @hemswaroopraorane3424 5 ปีที่แล้ว

    good work dude

  • @mrday3465
    @mrday3465 4 ปีที่แล้ว +6

    Next time put the encoder on the motor shaft prior to the gear box; your resolution will multiply by the gear ratio

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

      Slow response. …(If we see on gearbox Shaft)
      Acuration? depend on backlash of gearbox. But it nice to try!

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

    "No, not one thousand five hundred. Fifteen hundred!" 👋🏻👋🏻👋🏻

  • @NOONFIX
    @NOONFIX 6 ปีที่แล้ว +1

    its really nice work , thanks for sharing .. waiting for t he next one
    i hope you will try to control 2 or 3 servo using arduino , because i really want to make a 3d printer using an old printer servos !!

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

    New Sub! Where is the link to website that gave you the breakthrough?

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

    What is the formula to get the resolution? I believe you said 3.6. How did you get that number?

  • @hdfhhddff683
    @hdfhhddff683 5 ปีที่แล้ว +4

    great , that sensor and disk can be found in pc mouse.

  • @Martin-dw4eo
    @Martin-dw4eo 2 ปีที่แล้ว

    Very nice

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

    I want to convert a cordless drill machine to simple servo motor. I need to stop it intermittently using remote control. I guess similar motor is used in steering of 46kg load capacity toy car.

  • @Ebuilt
    @Ebuilt 6 ปีที่แล้ว +1

    code
    ??

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

    Can you please help me to make a code for dmx stapper motor with encoder

  • @samuel-br.man__3571
    @samuel-br.man__3571 ปีที่แล้ว

    Tsch… TSCH…. *TSCH*

  • @johnlongs836
    @johnlongs836 5 ปีที่แล้ว

    Can u show us the count in computer ..plzz

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

    Bro code for that

  • @galihabufaris7384
    @galihabufaris7384 5 ปีที่แล้ว

    Please Googling servostrap. By Miguel Sanchez

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

    Y el resto de los vídeos

  • @akashsingh4880
    @akashsingh4880 5 ปีที่แล้ว

    Bro I want know that a DC motor can be converted into stepper motor

    • @galihabufaris7384
      @galihabufaris7384 5 ปีที่แล้ว

      No, absolutely not. Stepper motor have 2 stator coil. And dc (brushed) motor only have one rotor coil.

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

      galih Abu Faris yes it can, stop talking rubbish.

  • @micultimy91
    @micultimy91 6 ปีที่แล้ว +7

    nice thing you've made there. however, please avoid using "uhm" so much. It gets very annoying to listen. Good luck with your project! Hope you got some good results to share with the community! Cheers!

    • @mechatronicsdude453
      @mechatronicsdude453  6 ปีที่แล้ว

      Andrei Timofte thanks for the feedback. You are right about the "uhm". I try not to do it but I need more practice. Unfortunately I'm very busy with my studies at the moment and had no time to work on it but as soon as I get some spare time I will definitely share the progress.

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

      The "umms" aren't that bad. However, the lip smacking is annoying. Umms are ok as long as you move on quickly.

  • @fazbear_tv8314
    @fazbear_tv8314 4 ปีที่แล้ว +1

    THIS IS A TUTORIAL NOT A DANG ART CLASS

  • @N.g.Chanal
    @N.g.Chanal 2 ปีที่แล้ว

    but where is controll system..

    • @Martin-dw4eo
      @Martin-dw4eo 2 ปีที่แล้ว

      Mcu like arduino. easy stuff

    • @N.g.Chanal
      @N.g.Chanal 2 ปีที่แล้ว

      @@Martin-dw4eo yes..how use mcu as controller? code and detail video available? if no ,please sir upload it.

    • @Martin-dw4eo
      @Martin-dw4eo 2 ปีที่แล้ว

      @@N.g.Chanal To help u as best as I can, u first need a h-bridge otherwise the servo won't rotate in both directions (use this video and component: th-cam.com/video/OkHR1BZCcqA/w-d-xo.html&feature=emb_logo) then u will need to make the code for the infrared sensor which detects how many spaces of the disk have been traveled use my code:
      int D(){
      if(digitalRead(WheelSensor) == 0 && CheckChange2 == 1){
      CheckChange = 1;
      CheckChange2 =0;
      DFunction();
      }
      if(digitalRead(WheelSensor) == 1 && CheckChange == 1){
      CheckChange = 0;
      CheckChange2 = 1;
      DFunction();
      }
      This code checks whether the disks space is empty or full. DFunction() is just incrementing a variable, thus u know the exact location. (For Both direction change make an if command to check rotation dir)If u dont understand the code then learn c++ inside of the arduino ide. Just watch vids. At this point it should be very easy to give positioning commands to the servo via while commands.
      Good luck for your Project.

  • @TonyMacaroni69_
    @TonyMacaroni69_ 5 ปีที่แล้ว +1

    Uuhmmm

  • @thewildwhisper
    @thewildwhisper 6 ปีที่แล้ว +1

    Umm ummm unmm

  • @tankloverrc1344
    @tankloverrc1344 5 ปีที่แล้ว

    Someone please count how many lip slaps and ums this video has No offence MD