Control Stepper Motor with Limit Switches - Arduino Programming

  Рет қаралды 83,877

Maker Tutor

Maker Tutor

6 жыл бұрын

Control Stepper Motor with Limit Switches - Arduino Programming
Link Sketch download :
github.com/makertut/stepper-l...
::::::::::: SUPPORT CHANNEL ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Please Donate To Help Me Afford New Equipment And Software To Make My Videos More : goo.gl/1m8Dg2
Don't forget to subscribe!

Пікірлер: 42
@ozgurkaygisiz1562
@ozgurkaygisiz1562 6 жыл бұрын
Could it be possible to move for example 1 cm while the engine is on the road and wait for 1 second? can you run it again from the start button after returning home?
@123mitko123
@123mitko123 5 жыл бұрын
Hello,How to change the code for work with two limit Switches in both directions?I connected limit Switches in parallel !
@Dancopymus
@Dancopymus 7 ай бұрын
Hello, first of all, thanks for the video tutorial. I didn't understand correctly, but does the transverse guide return automatically after touching the Limit Switch on one side and so on? In fact, I would like to make the cross guide stop when touching the Limit Switch and return after pressing a button; is this possible? Thanks
@JayaTech01
@JayaTech01 6 жыл бұрын
Hi. i try your sketch, but im using BL-TB6600, i had a problem, wh my motor not runing.. there any wrong?
@guyguy6420
@guyguy6420 4 жыл бұрын
Ciao. ottimo video. Volevo chiederti , è possibile mettere i micro Switches in entrambi i lati ( Inizio e fine corsa) Grazie.
@jatiherin3311
@jatiherin3311 5 жыл бұрын
I use the TB6600 stepper motor not running, can ask for help
@barywbw5887
@barywbw5887 2 жыл бұрын
excuse me, if motor stepper replaced with motor DC is it okay ?? or the same
@TAMAGOCHI1001
@TAMAGOCHI1001 6 жыл бұрын
Hello! Thanks for your great videos!!! I'm doing something similar but, I can not configure the 2 limit switches (( Might you help me please? Sketch: #include #define STEPS 200 Stepper stepper(STEPS, 8, 9, 10, 11); int pot; //Potentiometer int derecha=3; //Rigth switch int izquierda=2; //Left switch int limitIzq=4; // Left limit Switch int limitDer=5; // Rigth limit switch int direccion; void setup() { pinMode(derecha,INPUT); pinMode(izquierda,INPUT); pinMode(limitIzq, INPUT); pinMode(limitDer, INPUT); } void loop() { pot=analogRead(A0); //Lectura potenciómetro pot = map(pot, 0, 1023, 200, 1100); stepper.setSpeed(pot); stepper.step(direccion); if(digitalRead(izquierda)==HIGH) { direccion = 200; } else if(digitalRead(derecha)==HIGH) { direccion = -200; } else { direccion = 0; } }
@tonyjohnson4572
@tonyjohnson4572 4 жыл бұрын
Could you please update the link to the sketch. Thanks
@aspirine99999999
@aspirine99999999 6 жыл бұрын
thank you very very much
@avishchoolun624
@avishchoolun624 Жыл бұрын
Great 🔥😍
@zoomtech8885
@zoomtech8885 5 жыл бұрын
Good you and Good your video
@aurelioimprota482
@aurelioimprota482 3 жыл бұрын
Gentile Maker Tutor, mi scusi se approfitto della sua pazienza ma sto cercando di adattare questo sketch in un mio progetto che include anche un rtc per accendere una lampada oltre a un motore passo passo. Dopo varie prove però ho un inconveniente che non riesco a risolvere perché nel loop ho rtc che mi fa viaggiare a scatti il motore. Spero proprio che lei ha il tempo e la pazienza di darmi una soluzione a questo problema perché non saprei proprio come fare!!! La ringrazio per tutti i suoi video che oltre ad essere molto interessanti sono anche molto istruttivi!!!
@fdscreesablon5735
@fdscreesablon5735 2 жыл бұрын
I want to buy this tool, can it be sent to Indonesia? What is the price?
@industrial.inoxidable
@industrial.inoxidable 4 жыл бұрын
Hello Friend. I am in the project of updating a laser cutting machine. Could you help me with the wiring for the X and Z limit switches? I have a map of the card. Is it possible to send it to your email to help me? It would be something that I would really appreciate!
@mostafashaker9871
@mostafashaker9871 Жыл бұрын
عايز اعرف القطعة السوداء الي بسوستة مهمتة اية
@mirzaimranbaig5227
@mirzaimranbaig5227 Жыл бұрын
VERY GOOD
@muratcanbarut64
@muratcanbarut64 4 жыл бұрын
perfect
@siddarthakadali7719
@siddarthakadali7719 4 жыл бұрын
please explain what the code does
@davebrown4119
@davebrown4119 5 жыл бұрын
Any tutorials on how to add a potentiometer for controlling speed to this limit switch setup? Thanks
@princening679
@princening679 4 жыл бұрын
I need same controll speed 1 direction
@junaedi4074
@junaedi4074 4 жыл бұрын
Bisakah saya membeli sepaket lengkap semua itu yang bisa langsung pakai
@cihanaraci2990
@cihanaraci2990 4 жыл бұрын
broken link please update
@OhadooElectronics
@OhadooElectronics 6 жыл бұрын
cool
@rounakbhattacharyya1655
@rounakbhattacharyya1655 5 жыл бұрын
i want to control my bipolar nema23 stepper in forward and reverse both with limit switch. so please can you tell how to do it or else give any contact such as official mail id ?
@eugen-christianfeuchter1689
@eugen-christianfeuchter1689 5 жыл бұрын
I have the same problem and need 2 limit switches.
@didifisto2968
@didifisto2968 5 жыл бұрын
Did you find how to do it ? I am still confused in coding with 2 limit switchs
@Leandroanjo10
@Leandroanjo10 4 жыл бұрын
Wow, nice job... Can you send me the code? I will make a project and I need to use end stop... Thank you for your attention.
@anfelarya8174
@anfelarya8174 4 жыл бұрын
Could u please explain about stepin, dirpin, and enpin? (I got on your code)
@oscar8389
@oscar8389 2 жыл бұрын
step pin is how many steps the motor takes in a rotation, and the dirpin is the direction the stepper motor is turning, and then enpin idk about
@gamepolama5473
@gamepolama5473 Жыл бұрын
how fast is this
@madbrit5053
@madbrit5053 4 жыл бұрын
cant find the wiring diagram for the limit switches, just a link to a load of adverts, most annoying
@matthewstraabe7129
@matthewstraabe7129 4 жыл бұрын
When I press the limit switch it kills power to my arduino and does not revers e the motor. Why is this happening
@OL-ry2ok
@OL-ry2ok 4 жыл бұрын
do you have relays for the motor reversal?
@panjapon_maxpoonsawat7688
@panjapon_maxpoonsawat7688 6 жыл бұрын
ชุด กลไลอลูมิเนียม ขายที่ไหนครับ หรือมีขายไหม ?
@MakerTutor101
@MakerTutor101 6 жыл бұрын
Arduino4Pro or ZoneMaker
@panjapon_maxpoonsawat7688
@panjapon_maxpoonsawat7688 6 жыл бұрын
Maker Tutor ขอบคุณมากครับ
@princening679
@princening679 4 жыл бұрын
Code link is not working
@MakerTutor101
@MakerTutor101 4 жыл бұрын
Sorry for the mistake github.com/makertut/stepper-limit-switch
@JayaTech01
@JayaTech01 6 жыл бұрын
Where a wiring diagram?
@MakerTutor101
@MakerTutor101 6 жыл бұрын
OK , Thx for watching . jume-maker.blogspot.com/2017/12/control-stepper-motor-with-limit.html
@donichesa3813
@donichesa3813 4 жыл бұрын
give me sketch please
DIY Home Made Linear Motion PART 2
3:43
Maker Tutor
Рет қаралды 105 М.
Looks realistic #tiktok
00:22
Анастасия Тарасова
Рет қаралды 96 МЛН
Me: Don't cross there's cars coming
00:16
LOL
Рет қаралды 15 МЛН
KINDNESS ALWAYS COME BACK
00:59
dednahype
Рет қаралды 136 МЛН
Homing with the AccelStepper library and a limit switch
17:09
Curious Scientist
Рет қаралды 60 М.
2 limit switches wiring  using same pin  Arduino
3:03
Maker Tutor
Рет қаралды 139 М.
Big Stepper Motors with Arduino
29:43
DroneBot Workshop
Рет қаралды 1,2 МЛН
2 - Control an LED with a limit switch
7:26
David Dobervich
Рет қаралды 32 М.
limitswitches
11:23
Wosag
Рет қаралды 35 М.
Electronic Basics #24: Stepper Motors and how to use them
6:47
GreatScott!
Рет қаралды 2,2 МЛН
3018 CNC Limit Switches & Universal GCode Sender
15:10
thehardwareguy
Рет қаралды 33 М.
Controlling 3 Stepper Motors with the AccelStepper Library for Arduino
11:49
ОБСЛУЖИЛИ САМЫЙ ГРЯЗНЫЙ ПК
1:00
VA-PC
Рет қаралды 1,7 МЛН
Tag her 🤭💞 #miniphone #smartphone #iphone #samsung #fyp
0:11
Pockify™
Рет қаралды 35 МЛН
Easy Art with AR Drawing App - Step by step for Beginners
0:27
Melli Art School
Рет қаралды 10 МЛН
НЕ ПОКУПАЙ СМАРТФОН, ПОКА НЕ УЗНАЕШЬ ЭТО! Не ошибись с выбором…
15:23
Урна с айфонами!
0:30
По ту сторону Гугла
Рет қаралды 8 МЛН