Rotation angle control of stepper motor

  Рет қаралды 44,470

ATO Automation

ATO Automation

Күн бұрын

Пікірлер: 36
@RafaelGarcia-mz7hx
@RafaelGarcia-mz7hx 4 жыл бұрын
I don't have words for this video...very good, congratulations!! Amanzing!!
@ATOcom
@ATOcom 4 жыл бұрын
Thanks~
@تعلمترقى
@تعلمترقى 4 жыл бұрын
Thank you so much for your vidéos about automatisme i learn more from your vidéos please i want to learn more about move instruction in driving a stepper motor and servomotor i have a difficulties to understand
@ATOcom
@ATOcom 4 жыл бұрын
Thank you for your message, we will try our best to show it in the video.
@تعلمترقى
@تعلمترقى 4 жыл бұрын
@@ATOcom thank you you are thé best
@josefranciscovalentim2300
@josefranciscovalentim2300 4 жыл бұрын
excellent explanatory video congratulations
@ATOcom
@ATOcom 4 жыл бұрын
thanks`
@plcgeneralcontrol2880
@plcgeneralcontrol2880 2 жыл бұрын
nice, ini sangat membatu saya alam memecahkan algoritem plc.
@Lee-rq7bk
@Lee-rq7bk 3 жыл бұрын
These are what I need,thank you very much.
@muaathe78
@muaathe78 3 жыл бұрын
Thanks for your informative vedio
@Harikutty_time
@Harikutty_time 3 жыл бұрын
excellent video
@pba21
@pba21 4 жыл бұрын
Very nice and clean setup
@ATOcom
@ATOcom 4 жыл бұрын
thanks~
@chenhui2
@chenhui2 2 жыл бұрын
Can this accurately rotate 1 degree or half degree?
@ATOcom
@ATOcom 2 жыл бұрын
It depends on how many pulses your stepper motor needs per revolution. Assuming that 360 pulse motors make one revolution, each pulse motor rotates by 1°. If 720 pulses are set, the motor only rotates once, and the motor rotates half a degree every time it receives a pulse.
@ridhwanroslan5271
@ridhwanroslan5271 4 жыл бұрын
Can you explain how to determine 'F' on SPED and PLS2. I don't understand how and what to put as the first word frequencies. Thank you in advance.
@Prn3009
@Prn3009 4 жыл бұрын
hey man were did you get that data sheet from?
@sharvinraaj6585
@sharvinraaj6585 3 жыл бұрын
Bro can you give a copy of your PLC program ??
@chanchalsakarde
@chanchalsakarde 10 ай бұрын
how to control steps movements, like lets say we have 400 circular points to move one by one and i need to move pointer in following example sequence starting from 0->10->240->45->28-> .......... -> 400 . How can we automate this ..
@T-Series-scenario
@T-Series-scenario 2 жыл бұрын
sir, can I control without hmi?
@ATOcom
@ATOcom 2 жыл бұрын
Yes
@T-Series-scenario
@T-Series-scenario 2 жыл бұрын
@@ATOcom how to command 360° without hmi
@ATOcom
@ATOcom 2 жыл бұрын
@@T-Series-scenario You need to know how many pulses your stepper motor needs to make one revolution, and then use the PLC to send the same number of pulses to it to complete 360° without using HMI.
@md.saifulislam7156
@md.saifulislam7156 4 жыл бұрын
thanks
@ATOcom
@ATOcom 4 жыл бұрын
:)
@automationwork5904
@automationwork5904 4 жыл бұрын
Nice~ good job.
@ATOcom
@ATOcom 4 жыл бұрын
thanks~
@ИгорьОнищук-м1е
@ИгорьОнищук-м1е 3 жыл бұрын
Amazing !!!
@nicolacirrottola2899
@nicolacirrottola2899 3 жыл бұрын
Hi, I have to create an automated weighing system, let me explain: I have 2 stepper motors that must operate at a certain value detected by the weight transmitters connected to load cells. So, 3 load cells working together to give me a single value via the weight transmitter connected to the PLC. If the cells detect a given weight value they drive one of the two motors, the other motor must be operated regardless of when the second motor is not running. I know how to program a motor, I know how to program the load cells and the transmitter to give me back the weight, but I don't know how to connect the weight value with the motor drive, basically, I don't know how to activate the motor at the given value of weight. How can I do, what should I study? USE: Simens S7 1200C DCDCDC PLC Nema 24 stepper motors Standard Stepper Driver DIGITAL WEIGHT TRANSMITTER (RS485) Bending load cells.
@saefudinzuhri8854
@saefudinzuhri8854 15 күн бұрын
alhamdulillah
@muaathe78
@muaathe78 3 жыл бұрын
Code
@nicolacirrottola2899
@nicolacirrottola2899 3 жыл бұрын
Hi, I have to create an automated weighing system, let me explain: I have 2 stepper motors that must operate at a certain value detected by the weight transmitters connected to load cells. So, 3 load cells working together to give me a single value via the weight transmitter connected to the PLC. If the cells detect a given weight value they drive one of the two motors, the other motor must be operated regardless of when the second motor is not running. I know how to program a motor, I know how to program the load cells and the transmitter to give me back the weight, but I don't know how to connect the weight value with the motor drive, basically, I don't know how to activate the motor at the given value of weight. How can I do, what should I study? USE: Simens S7 1200C DCDCDC PLC Nema 24 stepper motors Standard Stepper Driver DIGITAL WEIGHT TRANSMITTER (RS485) Bending load cells.
@ATOcom
@ATOcom 3 жыл бұрын
Some ideas: 1. Activate the motor. You can use PLC comparison instructions. The PLC converts the weighing weight into a digital value and compares it with 0. When it is greater than 0, it means that a heavy object is detected, that is, one of the motors is operated. (You can adjust the comparison value 0 to change the sensitivity) 2. The use of PLC interlock commands between two motors means that only one of the motors can run (it is recommended to use the rising edge command or the falling edge command, or the delay command together).
@nicolacirrottola2899
@nicolacirrottola2899 3 жыл бұрын
@@ATOcom Hi, I'm a beginner and I hadn't considered the function of the comparator. The value beyond which the engine will activate once inserted in the code how do I create a connection on the HMI such that I can modify this value not in the code but through the HMI.
@ATOcom
@ATOcom 3 жыл бұрын
@@nicolacirrottola2899 This is a bit difficult for beginners. You need to know the working principle of HMI, which is used to read or write data in a certain register area of the PLC. When HMI and PLC are used in combination, you also need to know their communication settings. I have made some videos about HMI and PLC, and their principles are basically similar. Sorry, this knowledge can only be understood step by step by yourself. kzbin.info/www/bejne/h5Src3ihnrB8f7s kzbin.info/www/bejne/l4ibepaEiZWMjbs
How many VFD control methods do you know
6:18
ATO Automation
Рет қаралды 3,7 М.
What is a Stepper Motor and How it Works?
8:36
RealPars
Рет қаралды 303 М.
Вопрос Ребром - Джиган
43:52
Gazgolder
Рет қаралды 3,8 МЛН
Closed loop stepper motors -- very impressive
10:46
Matthias random stuff
Рет қаралды 144 М.
What Makes TMC2208 Stepper Motor Drivers Silent?
9:07
Michael Klements
Рет қаралды 310 М.
Electronic Basics #24: Stepper Motors and how to use them
6:47
GreatScott!
Рет қаралды 2,2 МЛН
The BEST Mechanical Display You've EVER Seen!!!
13:51
Tin Foil Hat
Рет қаралды 561 М.
PLC and Stepper Motor Example of Automatic Stamping Program
13:46
Instrumentation Tools
Рет қаралды 13 М.
Stepper Motor Quick Project Using TIA Portal v18 & S7-1200 PLC
10:14
BIG STEPPER MOTOR Driver DM542
13:58
Saravanan AL
Рет қаралды 40 М.