Nema 17 Stepper Motor is Noisy, or Rattling?

Sdílet
Vložit
  • čas přidán 17. 11. 2020
  • If your stepper motor isn't moving smoothly, it could be that you haven't wired it up properly. Not all motors are the same, make sure you check the data sheets to see how it should be wired to the controller.
    If you can't find a datasheet, then you can measure the resistance across different leads to find the coils. On all the Nema 17s I have seen, there are 6 leads, and the 2nd and 5th leads are left generally left open. Then you can measure the resistance between the other leads to find the coils. If the leads you are testing show an open loop, then those are not on the same coil.
    Once you have found the coil, it doesn't matter which lead goes to where; ie A and A' can be swapped without any adverse effects.
    Let me know if you have any questions. I'm happy to help.
    #shorts
  • Věda a technologie

Komentáře • 42

  • @Ange1ofD4rkness
    @Ange1ofD4rkness Před 10 měsíci +2

    I'll have to look into this, since my last was nice and quiet. Though I swear mine is wired correctly per the data sheet, but the proof is in the puddin here

  • @JM_Tushe
    @JM_Tushe Před 2 lety +5

    So this was my problem, thank you!!

  • @Chouby3
    @Chouby3 Před 9 měsíci +1

    thanks for saving me a giant headache

  • @adriandumay4501
    @adriandumay4501 Před 2 lety +1

    Thanks for the video. I'm helping my friend with his 3d printer

  • @EnteSuessSauer
    @EnteSuessSauer Před rokem

    saved my day

  • @benjur666
    @benjur666 Před 3 lety

    Thanks

  • @xs1l3n7x
    @xs1l3n7x Před 10 měsíci

    So this is it huh… I’m having that on the rail of a 3d printed robot arm

  • @TotoGuy-Original
    @TotoGuy-Original Před rokem

    do you know how to thoroughly test a nema 17 motor? i dont mean the basics i mean my motors seem to work but they are making weird noises when homing which is low speed i would love to know how to thoroughly test them

  • @jefrinjohnson8686
    @jefrinjohnson8686 Před 3 lety

    Is it necessary to shot grd pin and en pin of cnc shield...?

  • @64-bit63
    @64-bit63 Před rokem +4

    NEMA 17 is simply a form standard.

  • @BrianMaynardLetsDoThisThing

    I have the same problem 🤨

  • @samkaxe2488
    @samkaxe2488 Před 6 měsíci

    dear sir , thank you for sharing the video , could you please tell me where did you get the black gear mounted on the motor from ? am trying to build flat surface to mount another stepper motor on top of it

  • @consneoph3388
    @consneoph3388 Před 5 měsíci

    what pins?

  • @wingedbull1257
    @wingedbull1257 Před 3 lety

    @Chase Madison which stepper motor you recommend for wind turbine that can produce with out put at least 14 Volts and 150 watts?? thank you God bless.

  • @sagarkc8130
    @sagarkc8130 Před rokem +2

    Can you give Amazon link of silent motor

    • @LinusLegoTech
      @LinusLegoTech Před měsícem

      a bit late - its not the problem, the problem was how it was wired

  • @rendeverance
    @rendeverance Před 2 lety +1

    Your triggering your overcurrent with the first motor? That's a lot of current driving nothing? What driver you using?

    • @Matt-04
      @Matt-04 Před dnem

      i saw this too, confusing

  • @erix321
    @erix321 Před 3 lety

    Oh Thanks, do you have a code to controll this motors with a l298n and a raspberry?
    Greetings Eric

    • @chasemadison
      @chasemadison  Před 3 lety

      I was using an Arduino and the "Stepper" Library. This looks like it might be helpful though: projectiot123.com/2019/01/29/raspberry-pi-gpio-pins-with-stepper-motor-using-l298-motor-controller/

    • @matthijsjanse3275
      @matthijsjanse3275 Před 2 lety

      quick tip! stepper motor drivers can be had very cheap online

  • @gtcollection6933
    @gtcollection6933 Před 7 měsíci

    ok

  • @gauravphalke5311
    @gauravphalke5311 Před 3 lety +1

    Isn't it said that you should not disconnect the motor while the power still ON... Doing this will damages the Stepper Driver ?

  • @hppavilion6484
    @hppavilion6484 Před 3 lety

    i am facing the same problem had tried all the solutions changing wire combination, code, pins drivers but the motor is still sometime gives a beep only or rattles with beep and the strange thing is that motor is showing continuity in all four pairs, led blew up no matter what the wire combination is it show continuity on pairing 1,2 -1,3 -1,4 and so on for all. I had tried running motor directly with arduino without motor driver and it is running, but facing issue while it is connected to CNC shield with A4988 driver.
    I am using Arduino uno and motors are 4 pinned. Could you please tell me what I am doing wrong?

    • @chasemadison
      @chasemadison  Před 3 lety +1

      Without seeing the code, how it's wired and everything I can't tell you what's wrong. Make sure you have external power for the A4988 and give it at least 12v. Make sure you have a capacitor between power and ground. You can test where the coils are with a multimeter. If you test two wires and they are on the same coil then they will act like a wire with very low resistance (it is a wire, just wrapped around a bunch of times).

    • @hppavilion6484
      @hppavilion6484 Před 3 lety

      @@chasemadison I am sharing the code below I had checked the wires that are on same coil and then connected the same wire to the a4988 driver had checked the voltage it is around 12.63 - 12.71V. Just tried driving the motor without driver on a code pre provided in arduino examples for "Stepper One Revolution" but the motor is just vibrating and not moving at all. codes that I had tried are given below
      But the strange thing is all the coils are connected with each, I had checked with the multimeter in the continuity mode and it is showing continuity in every combination idk why.
      code 1:
      const int stepPin = 3; //X.STEP
      const int dirPin = 6; // X.DIR

      void setup() {
      // Sets the two pins as Outputs
      pinMode(stepPin,OUTPUT);
      pinMode(dirPin,OUTPUT);
      }
      void loop() {
      digitalWrite(dirPin,HIGH); // Enables the motor to move in a particular direction
      // Makes 200 pulses for making one full cycle rotation
      for(int x = 0; x < 200; x++) {
      digitalWrite(stepPin,HIGH);
      delayMicroseconds(500);
      digitalWrite(stepPin,LOW);
      delayMicroseconds(500);
      }
      delay(1000); // One second delay

      digitalWrite(dirPin,LOW); //Changes the rotations direction
      // Makes 400 pulses for making two full cycle rotation
      for(int x = 0; x < 400; x++) {
      digitalWrite(stepPin,HIGH);
      delayMicroseconds(500);
      digitalWrite(stepPin,LOW);
      delayMicroseconds(500);
      }
      delay(1000);
      }
      code 2:
      #define EN 8
      //Direction pin
      #define X_DIR 3
      //Step pin
      #define X_STP 2
      //A498
      int delayTime = 30;
      int stps=200;
      void step(boolean dir, byte dirPin, byte stepperPin, int steps)
      {
      digitalWrite(dirPin, dir);
      delay(100);
      for (int i = 0; i< steps; i++)
      {
      digitalWrite(stepperPin, HIGH);
      delayMicroseconds(delayTime);
      digitalWrite(stepperPin, LOW);
      delayMicroseconds(delayTime);
      }
      }
      void setup()
      {
      pinMode(X_DIR, OUTPUT); pinMode(X_STP,OUTPUT);
      pinMode(EN, OUTPUT);
      digitalWrite(EN,LOW);
      }
      void loop()
      {
      step(false, X_DIR, X_STP, stps);
      delay(1000);
      step(true, X_DIR, X_STP, stps);
      delay(1000);
      }

    • @chasemadison
      @chasemadison  Před 3 lety

      @@hppavilion6484 Sounds like you have the wires screwed up. Or possibly the Step or dir pins mismapped. I'm sure you've looked at this: www.makerguides.com/a4988-stepper-motor-driver-arduino-tutorial/

    • @hppavilion6484
      @hppavilion6484 Před 3 lety

      @@chasemadison Tried these instruction but in vain. The step and directions pins are matched correctly I had tried changing step and direction pins to make sure that there is no problem with those pins but that didn't work as well. I had followed the instructions provided in the link and uploaded the code provided in the link, the result is when I power all things up after connecting, Motor gives vibration only (Shaft didn't rotates) and completes a full revolution and then a delay and again gives vibration (didn't rattles only vibrates) and shaft didn't rotates. I tried unplugging the direction and step Pin while motor is powered, after doing so the motor vibrates and rattles a-lot continuously but the shaft of motor also moves a little bit . But in the case when all the pins are connected motor only vibrates (not rattles) completes its one cycle in CW direction then a delay of 1s and again completes 2nd cycle in CCW direction without any rotation in the shaft.
      Hope you understand what I am trying to explain. Thanks
      Another update is that when I plug Only any two wires of motor with the driver and other two remain disconnected then in the very first Iteration when the program starts motor rattles vibrates and shaft moves, then in the upcoming loops the motor only vibrates rattles a little bit but the shaft didn't moves and when it comes back to the starting point of loop again the motor shaft moves it vibrates and rattles, same scenario happens when I connect 3 wires of motor and 1 wire remains disconnected but when the all 4 wires are connected motor only vibrates and shaft isn't rotating

    • @chasemadison
      @chasemadison  Před 3 lety

      @@hppavilion6484 Did you say you were able to get it working with a different sketch? Not using the stepper library? Can you upload a video or something of what your wiring looks like? Also, it's possible you burned out the controller chip. I bought 5 of these and before I knew it I blew out 3 of them just trying to figure out how to get things working properly.

  • @jploganlant
    @jploganlant Před 3 lety

    hey you wanna help me build a automatic cigarette injection machine and put it up as open source for people to build and improve???

  • @dani777dani
    @dani777dani Před 3 lety

    tip for you, learn to use camera, 60% of the video is black

    • @dani777dani
      @dani777dani Před 3 lety

      and audio too

    • @chaseroberts4775
      @chaseroberts4775 Před 3 lety +2

      Weird. I don’t have that problem..

    • @Ayce47
      @Ayce47 Před 3 lety +3

      @@chaseroberts4775 the camera is in portrait mode, of course you have the same problem.

    • @mikebergman1817
      @mikebergman1817 Před 2 lety

      @@Ayce47 Yep🤣