Arduino Robot Car with Speed Sensors - Using Arduino Interrupts

Поділитися
Вставка
  • Опубліковано 15 вер 2024

КОМЕНТАРІ • 266

  • @ashr
    @ashr 3 роки тому +10

    I learned more about Arduino programming from this video in 40 minutes, then I did in almost 1 semester of my college classes that teaches us to work with the Arduino Uno.

    • @kyrofromgahool2009
      @kyrofromgahool2009 2 роки тому +1

      Mb you should have stopped making part times and start following the course((?

  • @CountryNerd639
    @CountryNerd639 2 роки тому +9

    I really like watching your videos. You explain the project in a way that I can understand. Most tutorials fly through the steps that some of the information is missing, or glossed over. That is why I appreciate your style of teaching.

  • @charlesbrown5057
    @charlesbrown5057 3 роки тому

    For some reason, I volunteered to enter a robotics competition for my senior project... extremely thankful for this video

  • @tegekgast
    @tegekgast 6 років тому +18

    Excellent timing! Just got into this thing and wondered how the heck the speedometer things work, the Chinese instructions aren't much help and you are a hero doing this series in your calm and structured way, much appreciated!

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому +8

      Glad that my timing worked out so well for you, let me know if you have any additional questions.
      The stuff we can get now from China is of incredible value but it does tend to lack a lot of useful instructions, which Is one of the reasons I made the video. Happy to hear you found it useful.

  • @msignal2000
    @msignal2000 4 роки тому +2

    Decided to spend the corona lock down learning Arduino. So very glad I found your channel.

  • @carlosl1895
    @carlosl1895 3 роки тому +1

    I’m starting with arduino. Still don’t know how to program it. Thank you for such a great explanation. To me is the best video I have seen. Keep up with it

  • @timrobinson7152
    @timrobinson7152 2 роки тому +1

    Just a few short comments. First, please note that 25.4 cm is NOT "about a foot." It actually is 10 inches.
    Second, while I enjoyed your video, as I always do, I came here looking for a way to control SPEED of two motors so they track accurately together. After all, the encoder disk is referred to as a "speed sensor". The motors you used, quite visibly, do NOT both turn at the same rpm, as the car drifted to one side when it moved. That was also obvious during your first demonstration showing rpm on the Serial Monitor. The two numbers were not in sync. If you do not have a video that addresses this issue, please consider making one.
    Thank you for your time and efforts producing these videos. I enjoy them and have learned a lot from you. Keep it up.
    Finally, to those who comment on your (and others') videos with lines like "I have a project due Monday, how can I do..." These drive me mad, as it seems they want YOU to do the work and let tham take credit for it to get their diploma/degree. Instead, I recommend those people actually invest in LEARNING something, instead of poaching others' work. Grrrr...

    • @citratune7830
      @citratune7830 6 місяців тому

      Hi Tim,
      Have you heard of PID control? Theres a video on MATLAB that allows you to use this output speed to determine how to adjust it.
      Also, about a foot is close enough to 10 inches. I think he rounded it.

  • @hayttom
    @hayttom 3 роки тому +1

    Thank you very much! I mainly came here to begin to understand interrupts. I'm on my way!

  • @cemox007
    @cemox007 4 роки тому +2

    Just a little note. Any variable that will be changed by interrupts should be defined as "volatile". So, counter1 and counter2 should be defined as volatile.

  • @peterbaker6597
    @peterbaker6597 6 років тому

    I am teaching myself Arduino and to a smaller extent robotics. I have followed your excellent tutorials about the robot car and every detail is clearly explained and easy to follow. The instructions on Interrupts (and the link to Nick Gammon) made my project jump ahead in leaps and bounds. I did find that the last code would not run until I put a few pinMode(??, OUTPUT) instructions in the setup to define the Arduino to L298N driver pins. Once they were set, away we went. Thanks again and I'm looking forward to your continued additions to the car.

  • @1DR31N
    @1DR31N 3 роки тому +2

    It cannot be better. What a great video. Words aren't enough to praise your job. Congratulations, you deserve the best.

  • @andreaszervas7546
    @andreaszervas7546 6 років тому +4

    Excellent work! You are a great teacher. I found you last week and learn from you things I m looking for months before. Thank you and keep uploading!

  • @andur63
    @andur63 6 років тому +33

    This video is worth every minute watching, you made such a fine job, Thank you!

  • @bluehornet6752
    @bluehornet6752 5 років тому +2

    Great video.
    Your > is "greater than" not less than... You said it correctly towards the end, but it was confusing when you said it incorrectly while explaining the logic of your functions. Excellent demonstration though on the use of optical sensors, comparators and interrupts. Great stuff!

  • @d3bbi339
    @d3bbi339 6 років тому +1

    You should make a video on building a drone with a camera attached. Just a thought! You just explain things so well it would make things so much easier for my brain to crunch on.

  • @VerifiedUser-DE
    @VerifiedUser-DE 6 років тому +5

    The way you explain everything is amazing ..which let me stick till last...waiting for more material ..mostly excited about IOT

  • @andreaszervas7546
    @andreaszervas7546 6 років тому +4

    hi and thank you for this work, it's a great start for me.
    Some improvements I did in the move routines code:
    1. if you use "II" instead "&&" in "while", then the movement finish when both motors end at the same number of steps.
    2. instead of "steps > counter_A" I use "counter_B >= counter_A" and instead of "steps > counter_B" i use "counter_A >= counter_B".. in this case each motor waits the other to complete same number of steps, so the movement is straight.

  • @pastrana2000
    @pastrana2000 5 років тому +5

    Outstanding video! You really explained things here in layman's terms which helped tremendously.

  • @Webendowed
    @Webendowed 4 роки тому +10

    I'm new to the group and I must say this is great. I'm learning so much and having thought provoking ideas as well. Thank you for these great videos DroneBot Workshop

  • @eclecticlife
    @eclecticlife 2 роки тому +1

    Excellent instructional video! Your videos are clear, easy to understand, and to the point. Thank you for all the effort and for sharing your knowledge.

  • @joerinaldi5
    @joerinaldi5 5 років тому +1

    Excellent Presentation. Clearly explained with complete details of project without any missing steps. Very easy to follow...thanks

  • @bennedhedegaard4971
    @bennedhedegaard4971 4 роки тому +6

    This is an incredibly valuable resource, thank you for your work!

  • @sugarstool1602
    @sugarstool1602 6 років тому

    This is sooo crystal clear. I code more on Python instead. Go through Pyserial to response each other between Arduino IDE and Python. very much like this episode.

  • @anubhavkalita675
    @anubhavkalita675 4 роки тому

    I understood everything whatever you explained.
    Love from India 🇮🇳

  • @amjad2000in
    @amjad2000in 6 років тому

    Simply Superb .... No words . .. This is the best tutorial video I have ever seen in my life in youtube yet. And your lab, its awsome. Wish I could work with you. You have explained everything in such a way that even a beginner will understand it. I am also building a Robo car with same chasis but controller and functionalties will be different. Just came here while searching the working of speed encoders. I got what I need. I am from India and wish I could meet you in person ever and visit your lab. Keep going sir ...

  • @Aegir1001
    @Aegir1001 6 років тому +3

    A big thank you for a nice and informative tutorial. I was pondering whether to start to learn Arduino and found your channel after a short search. Very interesting - now I'm hooked!

  • @PG-qz6mg
    @PG-qz6mg 2 роки тому

    Thank you very much for your videos. I'm french but i understand very well your english !

  • @Luis3alsa
    @Luis3alsa 3 роки тому +1

    This is by far the best channel to learn arduino! Thanks a lot 👍

  • @airesearch0844
    @airesearch0844 3 роки тому

    Thanks for the wonderful video. I am dding these comments *again* even though you have replied to similar comments. But I was looking for some *errata* in the text or in the video about that. After 3 years, it will take some digging to get to those comments, hence to help the late comers like me. Advance apologies.
    39:00 - Adding 0.5 to the float value and casting to (int) will automatically do a upward rounding.
    44:40 - 25.4 cm is 10 inches, not 1 foot. One foot is 2.54 x 12 = 30.48 cm

  • @johnhaythorpe206
    @johnhaythorpe206 6 років тому

    Brilliant Demo, with excellent explanations. The only suggestion would be (at 33:37) show the negative from the 9 volts goes to the outside (chassis) of the 2.1 mm power socket (centre is positive). I am jealous of how neat, tidy and well laid out your workshop appears.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Good eye John, I should have spotted that connection error but didn't until I read your comment. Hopefully most users will just use a 9-volt to 2.1mm connector and won't reverse the polarity. Thanks for pointing that out!

  • @123kkambiz
    @123kkambiz 6 років тому +1

    Your tutorials are excellent.Thank you very much for uploading the video with excellent camera positioning and video editing.

  • @marcosalmeida9465
    @marcosalmeida9465 6 років тому

    Say hi to Brazil!
    I still do not speak your language very well, but I'm studying!
    Thank you for the explanation. I searched for something very much, but without much success, I had to appeal and look in another language ... Thank you! Nós amamos vocês!

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Hi to Brazil from Canada Marcos! You do much better in English than I ever would in Portuguese. I'm glad you were able to understand enough to make it useful for you.

  • @spwim
    @spwim 5 років тому +2

    My remark : if you hope to get your car running perfectly forward and make perfect 90 degree turns with this setup, dont get your hopes up.
    The quality of those plastic gearboxes is, with my experience, just too low to achieve that goal.
    The problem is the relation PWM to speed is not linear and the motors dont break free at the same moment.
    So you have motor 1 already started while motor 2 is still stalling, leading it to make a turn.
    I have tried to compensate for these shortcomings in many many ways, but none seem to work in a satisfying way.
    Things i have tried : determining the breakfreepoint, linearise motor speed, use just one fixed speed and try to determine best PWM setting to obtain this, start with a short boost of 200/55PWM to break free and lower to desired speed after, adapt the motor speed while running forward. (if the difference in the counts is too great, make the faster motor slow down).
    I tried switching out gearboxes, i have many of those here. All of it didn't lead me to the stable predictable behavior i was looking for....
    I am going to switch to stepper motors for my requirement and/or do some tests with metal gearboxes later, i have hunch the main culprit are those plastic gearboxes, the tolerances on those just are not high enough for stable performance.
    PS.: if you use the change interrupt instead of the rising one you can double your resolution at no cost

    • @YvanR0Y
      @YvanR0Y 5 років тому +2

      Great info, thanks for the insights from your experimenting.

    • @spwim
      @spwim 5 років тому +1

      @@YvanR0Y np! Good luck on your project?

    • @48Harmonica
      @48Harmonica 5 років тому +1

      @@spwim Hi. How can i contact with you? I need some help and i have some questions. halilsen.h@gmail.com

  • @nejim1232
    @nejim1232 2 роки тому

    Thank you my dear for your clear and complyt lesson may god help you wish you all the best

  • @ishansmith549
    @ishansmith549 6 років тому

    Thumbs up. Very good, informative video. Blows all the other videos ive seen on these robots so far out of the game. Really appreciate the video.

  • @premprasad3511
    @premprasad3511 3 роки тому

    THE BEST SET OF TUTORIALS ON ARDUINO.

  • @preetamsingh147
    @preetamsingh147 3 роки тому +1

    You really are a hardworking man. Keep it up!

  • @toilaxuannam
    @toilaxuannam Рік тому +1

    Absolutely amazing video for beginners like me. Really appreciate it🎉

  • @pardhunadella2524
    @pardhunadella2524 4 роки тому

    This video just drove me crazy.....Such a great explanation......

  • @duylekhac6044
    @duylekhac6044 5 років тому +2

    You deserve so much more than 93K sub. Love your videos!

  • @julenlaskibar5409
    @julenlaskibar5409 6 років тому +3

    My compliments and applause. Simply amazed by such a well structured lesson.

  • @neurosp
    @neurosp 4 роки тому +1

    Another way I found to make it go straight is using a compass and following a heading , so if something interferes with the robot it wil autocorrect and using encoders too he can know the distance .

  • @danielmartel6424
    @danielmartel6424 4 роки тому +2

    very well done, congratulation. I love the details and the clarity of your explanation. Keep up the good work

  • @pantuflip
    @pantuflip 6 років тому +1

    Un gran aporte, sobre todo en la parte del código de las interrucciones.
    Nice contribution, Very good information about interruptions.

  • @odevarjr8715
    @odevarjr8715 2 роки тому

    Thank you, teacher! 2022 and still a great and relevant lesson!

  • @claudecastets4271
    @claudecastets4271 6 років тому

    very clear instructor efficient and going in details for all functions

  • @roniosteicoechea9190
    @roniosteicoechea9190 6 років тому +5

    This am amaizing channel! Really you are doing a beautiful job!

  • @cliffordhallam3270
    @cliffordhallam3270 6 років тому

    Excellent video, very easy to follow. Looking forward to the radio control video because that’s where I’m currently at with my own arduino robot project. Thank you for taking the time to make this.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Glad you liked it, stay tuned as the remote control will be coming very soon.

  • @dr.psprojects9591
    @dr.psprojects9591 3 роки тому +5

    Is there an amazon link for this introductory kit? I can't seem to find it on the website.

  • @zobayarriad668
    @zobayarriad668 5 років тому

    You are really awesome guy who really understand robotics

  • @ricklarson8459
    @ricklarson8459 2 роки тому

    Thanks. Still helpful in 2021!

  • @MrHristoB
    @MrHristoB 6 років тому

    Excellent tutorial!!! Well done. I'm really enjoying your videos, pure information without the drama other guys trow out. I did a couple of projects but I used 6 cell holder for rechargeable batteries for 7.2V for the arduino and 8 cell for the H bridge. Keep them coming mate!! Regards

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Glad you liked it, thanks for the nice comment! Next video is on Friday.

  • @ahmedabdulsamir932
    @ahmedabdulsamir932 4 роки тому

    I just watched this video and went ahead to download more. I'm planning to build something big with this as soon as Corona virus is over and shipping resumes. Thank you so much. I would love if you can put me through whenever I get hooked up on the way.

  • @wolfrobots118
    @wolfrobots118 4 роки тому

    You are simply the best. I love your videos. They have helped me multiple time.

  • @davidkennard2614
    @davidkennard2614 6 років тому

    Thank you very much. Robotics is fascinating and provides a vehicle for learning lots of different processes.I plan to automate my greenhouse to some extent and include remote monitoring of the parameters.

  • @SchwanaCARDHUT
    @SchwanaCARDHUT 4 роки тому

    Thank you very much for tutoriels ....I'm from France

  • @MrEerilybasic
    @MrEerilybasic 6 місяців тому

    Thanks Bill. Much fun!

  • @grape142
    @grape142 6 років тому

    Excellent video, glad to see back. I'm looking forward to your development of this robot. I like the explanation of the use of interupts.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Glad you enjoyed it and I'm glad to be back. I'll definitely have more on the evolution of this robot very soon!

  • @wuzhenick
    @wuzhenick 6 років тому +1

    I was thinking at the end when you demonstrate the control of 1 step. How much would’ve the wheel actually turn after the power’s being cut and how do we measure it and encounter the accuracy problem (if there’s any)?

  • @jainlibra
    @jainlibra 6 років тому +2

    Your videos are awesome!!really helpful

  • @jlucasound
    @jlucasound 4 роки тому

    The opto-isolator can also be used with a "flag" (a single piece of metal or opaque plastic) as a "home" sensor.

  • @kboo918077
    @kboo918077 6 років тому +3

    Thank you for the very good videos you make, they are very clear, very good work. I have a question, could you do a video that show an example of PID controller maybe with this kit? It could be very interesting to make a speed and another with a position controller. Thank you very much

  • @dafeifeng3902
    @dafeifeng3902 2 роки тому

    Thank you for this tutorial!

  • @pradeepsahoo7243
    @pradeepsahoo7243 6 років тому

    Really nice video! Having bought a similar chassis last month, I made a Mobile controlled robot car using a bluetooth HC-05 module, but I kept wondering what to do about those speed encoders to control the distance they travel or speed of the motors. Well, thanks to you, now I know. The explanation about the Interrupts was exceptionally good and will help me in building some more ambitious projects. I will surely check out your website as well.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому +1

      Thank you for the nice comment, so glad I was able to help!

  • @damithsm1980
    @damithsm1980 6 років тому

    Great Work... Your presentation was simple and amazing...Thank You very much. I love the way you arrange your tools too.

  • @marwanshwaiki777
    @marwanshwaiki777 3 роки тому

    This is a great tutorial. thanks alot for your excellent way of presenting.

  • @bibekghimire8619
    @bibekghimire8619 6 років тому

    The way you demonstrate is really amazing... I look forward for your others tutorials and can you make some videos on IOT...

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Glad you enjoyed it. I have several IoT videos and articles planned, they will be out very soon.

  • @ArduinoBasicsBlogspot
    @ArduinoBasicsBlogspot 5 років тому

    A great video explanation - very thorough and easy to understand. Awesome !!

  • @BTSARMY-zi6ph
    @BTSARMY-zi6ph 3 роки тому

    Wow, that is so smart! Thank you for all the tips for my robot!

  • @christosmal4653
    @christosmal4653 4 місяці тому

    Hi Bill . Could u mabe give me some guidelines to combine this project with ultrasonic sensor. I have try doing it but some how get stuck in code.

  • @naboulsikhalid7763
    @naboulsikhalid7763 6 років тому +1

    A good teacher. thank you again

  • @benkessler7267
    @benkessler7267 7 місяців тому

    Hi, I have some questions about the power supply. Could you power both the Arduino and the L298N off the 9V? My chassis is much smaller, so I am trying to reduce space. Also, can't you power one of the two boards off the 5V supply of the other? Is there some risk of over-currenting if too many sensors are connected to the 5V supply on the Arduino? Thanks!

  • @paulabraham2550
    @paulabraham2550 4 роки тому +1

    Actually, 25.4 cm is 10 inches (1" = 25.4 mm). A foot is about 30cm.
    Simplest way to get a rounded value is to add 0.5 before doing the truncate (or cast). (or use a lib function which does that'I suppose)

  • @bikefarmtaiwan1800
    @bikefarmtaiwan1800 6 років тому

    Nice and clear-please keep up with this great resource! Thanks for your effort.

  • @thilinawijebandara3232
    @thilinawijebandara3232 3 роки тому

    Great Explanation .Thank you very much 👍

  • @ibrahimshareef4743
    @ibrahimshareef4743 6 років тому

    Sir! You are the best in your field.
    Thank you for such great video.

  • @ShahyanBharucha30
    @ShahyanBharucha30 2 роки тому

    Fantastic video. Thank you very much 😊 ☺️

  • @gersonfer
    @gersonfer 5 років тому

    very important basic concepts . Thank you

  • @karalekasgeorge1252
    @karalekasgeorge1252 5 років тому +1

    Bravo from Greece..

  • @kyrofromgahool2009
    @kyrofromgahool2009 2 роки тому

    Could you pls explain about L298 Dual H-bridge motor controller: does it receive only 1 PWM signal at the same time to control motors in propotion, or can it receive two independant PWM signals from Arduino two control MotorA &MotorB output independantly?

  • @colinpowers5381
    @colinpowers5381 3 роки тому +1

    love your theme song!

  • @GaryParkin
    @GaryParkin 3 місяці тому

    I love watching your content. Thank you so much. I was looking on Amazon for the chassis and there are a few. Any reason why you chose a 2 wheeled over the 4 wheeled one? I'm looking forward to ordering the parts and making stuff.

  • @stonynotdusty
    @stonynotdusty 4 роки тому

    Why do you use TimerOne library here but not when the motors are regulated in the final sketch?

  • @jrareas
    @jrareas 4 роки тому

    you are incredible good at this. Thank you very much

  • @VolthausLabElectronics
    @VolthausLabElectronics 6 років тому

    Very good work sir. I've been wanting to learn this information for some time. Thank you very much.

  • @Mystic0Dreamer
    @Mystic0Dreamer 6 років тому

    Absolutely fantastic instruction video. Very clear, to the point, with no unnecessary baloney. I'm definitely a fan. I'll be building one of these robots via these instructions to be sure. I eventually hope to build a far larger robot using the same basic principles. But building this little one to gain the experience is definitely the way to go. Thank you very much for making these video courses.

  • @mattjohnson2848
    @mattjohnson2848 6 років тому

    Awesome! This is the first time it's actually made sense to me. Thank you.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому

      Glad I could help it make sense, you're welcome Matt. :)

  • @DevineIshaq107
    @DevineIshaq107 6 років тому

    What a neat Workshop , unlike the mess that I have in here, HOW do you manage it , OR you will be messy after the presentation is done, Or you have a an assistant .need a tutorial for being organised .

  • @tomgrabowski3493
    @tomgrabowski3493 4 роки тому

    Great video. You must have gone to one of the big engineering schools. There is no X in et cetera.

  • @theeasywayoutcampers6550
    @theeasywayoutcampers6550 4 роки тому

    Your a great teacher.

  • @shivpat6522
    @shivpat6522 6 місяців тому

    Hello. Thank you very much for giving this really informational and nice tutorial. I had a question regarding the code at 19:40 of your video. There is a TimerOne Library and I installed it from Paul Stoffregen's GitHub, but when I uploaded and tried running the code, I got Compilation Errors for 'class TimerOne' has no member named 'detachInterrupt', 'class TimerOne' has no member named 'aatachInterrupt', and 'class TimerOne' has no member named 'initialize'. The lines are in Void Setup (Second Line and Last Line) and Void ISR_Timerone (First Line and Last Line). My code is a direct copy of yours, so can you reach out to me as to why this didn't work on my side?

  • @viswanath7168
    @viswanath7168 4 роки тому

    Sir put video based on how to control the motor with pid with using of encoders

  • @tobygibbes2111
    @tobygibbes2111 2 роки тому

    can't you use l298n to power the Arduino through the 5v on the driver?

  • @febochestbox5507
    @febochestbox5507 3 роки тому

    Can we show a sample wiring for 24V power supply to drive the 2 24V DC motors, assuming 9V power supply from battery to power Arduino to include a breadboard.
    in short a circuit connection using L298n Motor Driver, Arduino board, Breadboard.

  • @332ARA
    @332ARA 9 місяців тому

    I have a car project for something like this. I'm new to Arduinos etc. I would like to make a automobile trip computer. I would need to process two hall effect fuel flow meters and either a square wave speedometer cable generator or incorporate GPS module. Need to display Distance, Instant MPG, Average MPG, Speed. To bench simulate the sensors I was thinking of using 3 of these motors individually controlled with hall effect wheels. I know one L298 with drive two motors. How many motors will one UNO drive? Can I individually control 3 motors? This all for the main project of an automotive tripmeter. Or is there some sort of simulated signal function should use in the software?

  • @housseinbenabdelhamid203
    @housseinbenabdelhamid203 6 років тому +1

    can you explain to us what a line follower PID control is ?

  • @abd-elrahmanmohamed9839
    @abd-elrahmanmohamed9839 6 років тому

    Really great and full explained . Thanks a lot !

  • @JorgeGarcia-ff3mu
    @JorgeGarcia-ff3mu Місяць тому

    Thanks for the video... I've built a cart using the same electronic components but I can't get the cart to move straight in either the forward or the reverse direction, and the distance that the cart moves is far less than the distance I put in the program. I've checked the logic over and over and it seems to be OK . I have the sneaky suspicion that the the HC-20K opto encoder is actually OVER counting steps! I checked my code by putting serial prints in strategic places and the code correctly calculates the correct number of steps for a given distance and the routines do start and stop the motors until the correct step count is reachedHence my suspicion that the speed sensors are reporting more steps than what have actually occured.
    To give you an idea, my wheel diameters are 66.2 mm - so the circumference is 3.14156 x 66.2 = 208 mm . When I input 208mm the subroutine correctly calculates that 20 steps are needed and the motors are turned until the ISRs report that the step counts reached 20 steps, but one wheel turns ~290 degress while the other turns only ~180 degrees.
    I am guessing that the interrupt pins are seeing a noisy signal and that some of that noise is triggering the ISR.
    As I am writing this, I am also thinking that I am running both the arduino and the motors using the same battery... perhaps that may be the source of the noisy signal on the ISR pins? I want to run on a single 9 battery because my cart is about 1/3 of the size as yours. I set myself the challenge top make everything as compact as possible.
    Have you or any of your subscribers come across this? Is there a solution?

  • @LucS0042
    @LucS0042 4 роки тому

    If you setup your interrupts no CHANGE instead of rising, that would give you 40 steps per rotation instead of 20. Would this actually be better angular resolution or is this a fallacy I'm falling for?

  • @blackbox330
    @blackbox330 Рік тому

    Sir, Great video