Тёмный
No video :(

Sequence Output Instruction Part 1 

KletteTech
Подписаться 38 тыс.
Просмотров 43 тыс.
50% 1

Website: klettetech.com/
Instagram: / klettetech
This video is about programming a Sequence Output Instruction in RSLogix 500. It shows both the setup and operation.
‪@KletteTech‬

Опубликовано:

 

28 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 36   
@mtbtrailbuilding6813
@mtbtrailbuilding6813 4 года назад
Great video. It was able to fill the gaps in my self taught understanding and give me a finished product. Thank you
@navdeepsatia8572
@navdeepsatia8572 5 лет назад
Very nice Explanation. I would not have guessed that I will understand this instruction that easy. Thanks.
@KletteTech
@KletteTech 5 лет назад
I am happy to hear that! Thanks for the feedback
@Olavotemrazaodenovo
@Olavotemrazaodenovo 4 года назад
Excellent. Congratulations from Brazil.
@KletteTech
@KletteTech 4 года назад
Thanks.
@leehomeschooling4644
@leehomeschooling4644 3 года назад
Very good teach , help a lot to understand the program for troubleshooting
@KletteTech
@KletteTech 3 года назад
thanks
@kevin00861
@kevin00861 Год назад
Thanks a million times Sir !
@KletteTech
@KletteTech Год назад
Most welcome!
@johnreyalforque5577
@johnreyalforque5577 10 месяцев назад
Very useful video! what plc tool are you using? Where can we download that software?
@BayMacDre415
@BayMacDre415 6 лет назад
Well done thanks for making this. Only question I have is how to get back to step 0 if you wanted to reset all of the outputs... (I guess you could have an extra step at the end which loaded zeroes for each bit) and also I was wondering if the control input needs to be anything in particular, or just something unique for that particular instruction. Thanks!
@KletteTech
@KletteTech 6 лет назад
Great questions. There is no way to get back to step 0. If you want all of the outputs to go to zero your need to program that or program in a clear that activates at the right time. The control input can be any input that make the rung logically true when you need the program to sequence. Hope this helps!
@BayMacDre415
@BayMacDre415 6 лет назад
Sorry, I meant the Control parameter within the instruction block (R6:0 used in this example)
@BayMacDre415
@BayMacDre415 6 лет назад
Not the toggle bit, or enable bit
@moisesmolina95
@moisesmolina95 5 лет назад
@@BayMacDre415 you would use the control instruction R6:0/DN to activate a ( "move" instrucion) and put a zero so that it moves it to control instruction R6:0/POS that way it start from zero position.
@kevin00861
@kevin00861 Год назад
Simply use RES instruction and address it with R6 control parameter, e,g you used R6:0 in the SQL instruction then use RES addressed with R6:0 and toggle it with input bit
@amolchandanshive323
@amolchandanshive323 2 года назад
Thanks for the video... 😇 i have a question to ask... Can we use sequencer for counting function.. Like i have to perform counting operation but not using counter.. So should I able to use sequencer for that?
@KletteTech
@KletteTech 2 года назад
You might be able to but it would a lot of work to set it up. A counter would be easier
@liridonosmani5834
@liridonosmani5834 3 года назад
👍👍👍
@navdeepsatia8572
@navdeepsatia8572 4 года назад
Hello Klette Tech I am making a program on RS Logix Micro to control a traffic light. I got kinda stuck when I tried to control the crosswalk. For example, If I want to turn on Northbound Light with Northbound crosswalk I put a simple push Button which would turn on crosswalk same as Northbound light. Now the problem is if Northbound Light is already on and then somebody comes and presses push Button for crosswalk, Crosswalk then would turn on immediately instead it should turn on next time northbound light come on. I tried so many different ways to make it work but I could not. Could you please give me any suggestions in this regard.
@KletteTech
@KletteTech 4 года назад
That is a big questions. Have you tried to use a FLL instruction to move it into the storage location. Or Latch the sequences in subroutines and have the crosswalk instructions activate which subroutine is needed. Does this help.
@navdeepsatia8572
@navdeepsatia8572 4 года назад
@@KletteTech Hello KletteTech Thanks for replying. Eventually, I was able to accomplish the desired result by calling internal bits and manipulate them into the program. Since I am not familiar with the instructions that you have mentioned above. But I will love to learn them and then approach the same problem with that instruction.
@KletteTech
@KletteTech 4 года назад
@@navdeepsatia8572 Awesome job. If I get a chance I will try and make a video on it.
@navdeepsatia8572
@navdeepsatia8572 4 года назад
@@KletteTech ok Thank You very much!
@joellumbala5684
@joellumbala5684 5 лет назад
how did you get the " light board " i can not seem to find a software for that i already have rslogix micro
@KletteTech
@KletteTech 5 лет назад
That is actually real I/O in my shop. I use picture and picture to to show it on the screen. Thanks for watching.
@jeromenote9739
@jeromenote9739 5 лет назад
I need some information on RS Logix programming for AB Micrologix 1200. If suppose, we have a sensor in field connected to the Digital Input of the controller. This sensor is connected to a conveyor, this gets signal ON and OFF contentiously every second or less than a second. I need to activate an output relay port only if the input is constantly ON for more than 5 seconds. Please advise how this can be done.
@KletteTech
@KletteTech 5 лет назад
Great Questions. Create a TON with the sensor being the input. no memory. If the sensor is on for preset of the timer lets say 5 seconds the done bit goes true. Have the done bit activate the relay. Does make sense?
@jeromenote9739
@jeromenote9739 5 лет назад
​@@KletteTech Thank you for your reply. "No Memory" this means the timer will get reset to "0" every time the input changes its state from ON to OFF ? Please explain how to set this timer property "no memory" in RSLogix 500 timer.
@KletteTech
@KletteTech 5 лет назад
@@jeromenote9739 Yes. if you have memory on the timer's input anytime the input goes true the timer will finish timing and the done bit will go true. If you want the output to activate when the input is only on for 5 seconds (lets say the conveyor stopped and it was not suppose to) then no memory in parallel with the input. does that make sense? Did i read you question correctly?
@KletteTech
@KletteTech 5 лет назад
This video might help. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-A4dewWWMnVA.html
@jeromenote9739
@jeromenote9739 5 лет назад
@@KletteTech Thank you, that was an excellent explanation about timers in RSLogix 500.
Далее
Sequence Output Instructions Part 2
6:02
Просмотров 11 тыс.
Rule #1 for Programming PLCs
33:00
Просмотров 44 тыс.
СЕРЕГА ПИРАТ - TEAM SPIRIT
02:37
Просмотров 339 тыс.
PLC101 - RS500 Sequencers
39:05
Просмотров 14 тыс.
Introduction to Timer On Delay using RSLogix 500
11:31
Allen Bradley RSLogix 500 PLC Counters and Timers
12:22