Rotation angle control of stepper motor

Поделиться
HTML-код
  • Опубликовано: 31 янв 2025

Комментарии • 36

  • @RafaelGarcia-mz7hx
    @RafaelGarcia-mz7hx 4 года назад +1

    I don't have words for this video...very good, congratulations!! Amanzing!!

  • @تعلمترقى
    @تعلمترقى 4 года назад +2

    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 года назад +1

    excellent explanatory video congratulations

    • @ATOcom
      @ATOcom  4 года назад +1

      thanks`

  • @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.

  • @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 ..

  • @plcgeneralcontrol2880
    @plcgeneralcontrol2880 2 года назад

    nice, ini sangat membatu saya alam memecahkan algoritem plc.

  • @muaathe78
    @muaathe78 3 года назад

    Thanks for your informative vedio

  • @Harikutty_time
    @Harikutty_time 3 года назад +1

    excellent video

  • @pba21
    @pba21 4 года назад

    Very nice and clean setup

  • @Lee-rq7bk
    @Lee-rq7bk 3 года назад +3

    These are what I need,thank you very much.

  • @automationwork5904
    @automationwork5904 4 года назад

    Nice~ good job.

  • @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.

  • @Prn3009
    @Prn3009 4 года назад

    hey man were did you get that data sheet from?

  • @sharvinraaj6585
    @sharvinraaj6585 3 года назад +1

    Bro can you give a copy of your PLC program ??

  • @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.

  • @saefudinzuhri8854
    @saefudinzuhri8854 27 дней назад

    alhamdulillah

  • @md.saifulislam7156
    @md.saifulislam7156 4 года назад +1

    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.

  • @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.
      ruclips.net/video/QcHBEkiKIIY/видео.html
      ruclips.net/video/aW8IcNT0YWY/видео.html