Understanding and using quadrature encoders - The Byte Sized Engineer | DigiKey

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.พ. 2024
  • When working on projects, sometimes it's really useful to be able to track the rotation of an object. Whether that's the shaft of a spinning motor, or a knob that you turn to select an item on a user interface. In this post I'll talk about how encoders work, and how to read them with a microcontroller. I'll even go over a couple of mistakes that I've made that you should avoid. Encoders come in two different varieties. There's the electromechanical kind that have physical switches that open and close inside them. Then there are the contactless kind that usually use magnetic fields or light to detect the rotating shaft.
    Bill of materials
    Rotary encoder: www.digikey.com/short/d4pn3mj2
    Limit Switch: www.digikey.com/short/8j5jchvf
    Nema 17 Stepper motor: www.digikey.com/short/b9fzpttt
    Fluke 117 Multimeter: www.digikey.com/short/q2jqvjhj
    Resistor Kit: www.digikey.com/short/q4w7wj75
    Jumper Wire Kit: www.digikey.com/short/8n0p92pn
    Rigol DS1054 Oscilloscope: www.digikey.com/short/3j4b3vrb
    Geared DC motor with encoder: www.digikey.com/short/9bd8mh0v
    Arduino Nano Microcontroller: www.digikey.com/short/bzc8j5wn
    Breadboard: www.digikey.com/short/nbh4q298
    Github project: github.com/bytesizedengineeri...
    Learn More:
    What is Switch Bounce and How to Debounce • What is Switch Bounce ...
    Byte Sized Engineer channel - / @bytesizedengineering
    Maker.io - www.digikey.com/en/maker
    DigiKey’s Blog - TheCircuit www.digikey.com/en/blog
    Connect with DigiKey on Facebook / digikey.electronics
    And follow us on X: / digikey
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @saddle1940
    @saddle1940 2 หลายเดือนก่อน +1

    Watch out, the code doesn't miss pulses, it can now add phony pulses. Lots of jobs with quadrature encodered motors need to halt and hold position, but if yours bounces back and forward on the single interrupt edge, you may miss it being a pulse opposite to the last one.
    The best way to do this is to interrupt on one line, then change the interrupt to the other line. That way you can bounce up and down on one line, but after the first change, it will ignore it. You only look at the stable, non-interrupt input.
    The code should be: On an interrupt on line A, record the state of line B and change the active interrupt to line B. On an interrupt on line B, record the state of line A and change the active interrupt to line A. The recorded AB states tell you the rotation direction at each interrupt.
    Had many problems with software interrupted quadrature counting on long lead screws that "ring" (rotationally vibrate) as they hit a physical end stop or work piece.

  • @earthlightsmusic2743
    @earthlightsmusic2743 2 หลายเดือนก่อน

    This is a good beginning. The ultimate is where your ISR handles a change of state on either input A or input B, so you get the maximum possible resolution of encoder position.

  • @parkesdj
    @parkesdj 2 หลายเดือนก่อน +3

    Great video very clearly explained. I have a question though. If you are using CHANGE to trigger the interrupt, won’t it double count because you will trigger on both the rising and falling edges.

  • @f-s-r
    @f-s-r 2 หลายเดือนก่อน

    That's surprinsingly easy and very clever. Great explanation!!

  • @danielatbasementtech
    @danielatbasementtech 2 หลายเดือนก่อน

    Very clearly explained ... great lesson.

  • @larrybud
    @larrybud 3 หลายเดือนก่อน +2

    Great stuff!

  • @bob_mosavo
    @bob_mosavo 3 หลายเดือนก่อน +1

    Thanks, Zack 👍

  • @paulz8750
    @paulz8750 2 หลายเดือนก่อน

    Great video.
    Wish I'd seen it sooner.
    Just like you, I've spent days too, looking at everything else thinking the problem is elsewhere.

  • @JonathanRansom
    @JonathanRansom 2 หลายเดือนก่อน

    I need to play with some encoders. Great video!

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

    Very good video, thank you

  • @JonitoFischer
    @JonitoFischer 2 หลายเดือนก่อน

    There are microcontrollers that have a dedicated peripheral to handle your quadrature encoder without handling gpio interrupts and checking pin state manually.

  • @jeremiahbullfrog9288
    @jeremiahbullfrog9288 2 หลายเดือนก่อน

    Don't you also need to use an atomic_block to prevent the ISR from updating the long variable in the middle of trying to read it in the main loop? ...or does the arduino framework handle this autmotically?

  • @DanielSimu
    @DanielSimu 3 หลายเดือนก่อน

    I'm confused about the comment that it's a bad idea to use mechanical switches. Aren't most basic dial encoders (the ones you typically turn by hand) operated somewhat like this? (but with contacts instead of bumps)
    Also, as for magnetic encoders, what's the benefit of using a quadrature encoder when it's also cheap and effective to read absolute position using a diametric magnet?

    • @LubosMedovarsky
      @LubosMedovarsky 2 หลายเดือนก่อน +1

      Simply put, mechanical contacts make sparks, which translates to chaotic sequence of ones and zeros. This erroneous state is then interpreted incorrectly as missed counts and incorrect direction. Engineers prefer being sure instead.