-
Contents
-
Table of Contents
-
Bookmarks
Quick Links
Logix 5000 Controllers
Major, Minor, and I\O
Faults
1756 ControlLogix, 1756 GuardLogix, 1769 CompactLogix,
1769 Compact GuardLogix, 1789 SoftLogix, 5069
CompactLogix, 5069 Compact GuardLogix, Studio 5000
Logix Emulate
Programming Manual
Rockwell Automation Publication 1756-PM014N-EN-P — March 2022
Supersedes Publication 1756-PM014M-EN-P — September 2020
Original Instructions
Related Manuals for Rockwell Automation Logix 5000
Summary of Contents for Rockwell Automation Logix 5000
- By Stephen Gates
- January 26, 2020
- Feature
Summary
By Stephen Gates, Owner, myPLCtraining.com
When it comes to industrial automation, Studio 5000 is one of the most widely used software packages in the world. Studio 5000 Logix Designer (formerly known as RSlogix 5000) is used to program the most powerful Allen-Bradley PLCs (technically PACs), including the ControlLogix and CompactLogix controllers.
In my career, I specialize in helping people become confident PLC programmers so they can advance their career or just get better at their job.
In this tutorial, I’m going to walk you through setting up your first project inside Studio 5000 Logix Designer. This is a key software that you need to learn to become a confident PLC programmer, so let’s jump right in.
This is what we will cover:
- Create a new project
- Adding I/O to the project
- Creating Ladder Logic
Create a New Project in Studio 5000 Logix Designer
If you have Studio 5000 installed on your PC, you should be able to find it in your applications under the folder called “Rockwell Software”
The icon will look like the following…
Once you open it up, you’ll be brought to a startup menu, that allows you to create a new project, open an existing project or get help on the software.
We are going to create a new project from scratch so we will choose “New Project” under the “Create” heading. From there we have a few options for project types, but we want to choose Logix in this case since we are going to be creating a Logix Designer PLC program.
Once, we have selected the type of project we want to create, it’s now time to choose the type of controller we want to use for the project. In this tutorial, we will use the Studio 500 Logix Emulate Controller. This controller emulates a physical controller by utilizing a portion of memory on your PC to act like a PLC controller.
We could choose any of the controller options but I’ll the next article in this series will cover the Studio 5000 Logix Emulate software, so using the Emulate controller in this example this will set us up for the next tutorial.
Ok, let’s give the controller a name. Let’s call it Pump_Control_Station. Then hit “Next”
At this point we can choose the revision number of the firmware we will use in the controller. I have Logix Designer version 30 on this computer so we will stick with the default revision, 30.
You also choose the type of chassis the controller will be in. (Note, that this is only true for ControlLogix, GuardLogix and Logix Emulate controllers since CompactLogix systems don’t use a chassis). We will leave at the default 4-slot chassis and leave the controller in the default slot position, slot 0.
Now click “Finish” to get your first project created!
Alright, now we have successfully created a new Logix Designer project. This what you should see when you first get into the software.
Adding I/O Modules to the Project
Ok, now that we have our project create let’s add some I/O modules to our configuration. Logix Designer makes this really easy to do.
On the left, inside the “Controller Organizer”, find the “I/O Configuration” item right-click the 1756-Backplane.
This is where we add input and output modules that will be controlled by our controller.
So, we choose New Module
Let’s add an analog input module and a discrete output module. Since we have a Logix Emulate controller it is going to restrict our options to ControlLogix I/O modules only. We can use filters to narrow our options even further. So we will choose analog.
Let’s just grab the first one available which is the 1756-IF16. A 16 channel voltage/current analog input module.
We don’t need to give it a name so we will just skip that and hit ”Ok” when the “New Module” dialog pops up.
Alright, now let’s add a discrete (or digital) output module. So change the filter from Analog to Digital. And let’s choose a 32 point output module for 24VDC, which will be the 1756-OB32.
And again, no need to name the module so we will just hit “Ok” on the “New Module” dialog box that pops up.
Here’s what you should see…
Alright, now we are making progress! We have Logix Designer project created with two I/O modules added.
Now let’s create some logic.
Creating Ladder Logic
This tutorial does not go into the details of how to use Ladder Logic, so if you’re new to Ladder Logic then you might want to check out this post.
For now we are just going to create one simple rung. The purpose this rung will be to turn on a pump when the tank level we are reading goes above 50%.
We are going to keep this as simple as possible.
First, open up the default ladder logic routine that is created when you create a new project. MainTask > MainProgram > Main Routine.
Next we will use the instructions tab above the logic area to choose to Ladder Logic instructions.We will need “greater than” comparison instruction to create our logic.
We can find that in the “Compare” tab and the instruction is labeled “GRT”. Just click and drag the GRT onto the first rung of the Ladder Logic routine.
Alright now, remember we want this logic to turn on a pump when the level of the tank gets above 50%. Our pump is getting controlled by the discrete output module: the 1756-OB32 module.
So we will use an output energize instruction which works much like a basic on/off relay coil. The output energize instruction, or OTE. The OTE should on the “Favorites” tab and the “Bit” tab
Ok, now we need to address our instructions to our I/O modules so we can read the correct data in and write to the correct points.
For GRT instruction, remember we are going to be comparing the analog input to 50%. And will use channel 5 from the analog input module. Now the syntax is a little different depending on the module type you’re using but you can always browse through the available tags and addresses from a module by going into the controller tags or just by clicking in the tag field of any instruction and then clicking the drop-down menu.
Since our analog input module is in slot 1, we will use Local:1:I and expand that. One thing that is pretty consistent with the addressing syntax I/O modules in Logix Designer is that your I/O point or channel data will almost always have the word “
data” in it.
Since we want channel 5 we scroll down until we see something with Ch5 and “Data” in it. So the correct address, in this case, ends up being Local:1:I.Ch5Data
And we want to compare that analog input value to 50. So, in source B of the GRT instruction we will put the number 50.
Next, we will address the OTE instruction. Remember the discrete output module is in slot 2, so we will be browsing for Local:2. And since it’s an output module it should have an O in the address. Which becomes Local:2:O.Data
And then we need to choose which output point will be used from the 32 point module. Let’s use point 19. So that becomes Local:2:O.Data.19.
And that completes our ladder logic example. Now, we will do one more thing to make sure our program runs like we want it and that is to make sure the analog input is scaled properly. As we earlier we want the analog input to giving us a percentage of the tank fullness level. So we want the Ch5 address to give us a value between 0-100%.
To set up the scaling let’s go into the module properties for the 1756-IF16. Just double-click the module in the I/O tree to open the properties.
And that should bring up the properties…once we are in the properties we want to do the following:
- Navigate to Ch05
- Change the input type from Current (A) to Voltage (V)
- Change the input range from 0-10V (in this example, we imagine that the tank level sensor puts out a 0-10V signal)
- Make sure the signal is scaled from 0 to 10 V
- Change the engineering units to %
This configuration ensures that when we get an analog voltage signal of 10V into channel 5, that it’s scaled to 100% and if the sensor is giving us a 5V signal it gets scaled to 50% and so on.
Wrapping Up
Now you should be able to create Studio 5000 Logix Designer project from scratch, add the necessary I/O modules and even create some ladder logic, using addresses from your I/O modules.
In the next article, we will explore how to use Logix Designer with Logix Emulate so you can test your logic, simulate your machines and just have some fun experimenting with PLC programming. So stay tuned for that!
In the meantime, if you have more questions about the topics we touched on in this article, here are some options to learn more:
- Studio 5000 Software
- Ladder Logic Programming
- Comparison Instructions in Ladder Logic
Look forward to helping you become a confident PLC
About The Author
Stephen Gates, the owner of myPLCtraining.com, specializes in helping people become confident PLC programmers so they can advance their career or just get better at their job.
Click Here for More Information
Did you enjoy this great article?
Check out our free e-newsletters to read more great articles..
Subscribe
Studio 5000
The Studio 5000 Logix Designer application is a scalable
application solution, used to program and configure any of the
Logix 5000 family of controller products. Depending on the
functionality required, one or more product catalog numbers might
be needed to acquire the appropriate functionality. The following
table will help you to determine which Studio 5000 Logix Designer
application package is best suited for your application needs.
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
CatalogNumber
9324-RLD700NX-ENE (English)
9324-RLD700NXINT (International)
9324-RLD600ENE(English)
9324-RLD-600INTL(International)
9324-RLD300NX-ENE(English)
9324-RLD300NX-INT(International)
9324-RLD300ENE(English)
9324-RLD-300INTL(International)
9324-RLD250ENE(English)
9324-RLD-250INTL(International)
9324-RLD200ENE(English)
9324-RLD-200INTL(International)
9324-RLD000ENE(English)
9324-RLD-000INTL(International)
ControllersSupported
CompactLogix, ControlLogix, Compact Guard-Logix, GuardLogix
Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix
Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix
Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix
Familes
CompactLogix, Compact GuardLogix Families
CompactLogix, Compact GuardLogix Families
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix
Families
PROGRAMMING EDITORS
Ladder Diagram (LD)
Fully Supported Fully Supported Fully Supported Fully Supported
Fully Supported Fully Supported Upload/Download andView Only
Function BlockDiagram (FBD)and Drive control
blocks(9324-RLDFB-DENE, or via9324-RLDMLPE)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/Download andView Only
Structured Text (ST)(9324-RLDSTXE,or via 9324-RLD-MLPE)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/Download andView Only
SequentialFunction Chart(SFC)***(9324-RLDSFCE,or via
9324-RLD-MLPE)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/Download andView Only
GuardLogixSafety Editor(9324-RLDGLXE)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/Download andView Only
PhaseManager(9324-RLDPME)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download Included
Sequence Manager (9324-RLDSQMN)
Fully Supported Fully Supported Upload/DownloadIncluded,
EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download Included
DES
IGN
Visit our website at www.rockwellsoftware.com
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
ADDITIONAL ADD-ONS
AdvancedProcess Controlinstructions Design license and runtime
license for one controller(9324-RLDAP-CENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Upload/Download andView Only
AdvancedProcess Controlinstructions Runtime licensefor one
controller(9324-RLDAPC-CLENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Upload/Download andView Only
FBD PIDE Autotune(requiresFBD option)(9323-ATUNEENE)
Included Included AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableUpload/Download andView Only
FuzzyDesigner(9324-RLD-FZYENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
RSNetWorx
forControlNet,DeviceNet,EtherNet/IP(9357-CNETL3,9357-DNETL3,9357-ENETL3individually
or9357-ANETL3combined)
Included AvailableSeparately
Included AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
VIRTUAL DESIGN
Studio 5000 Logix Emulate(9310-WE-D200ENE)
Included AvailableSeparately
AvailableSeparately
AvailableSeparately
N/A N/A AvailableSeparately
Studio 5000 Logix Emulate for Operator Training (9310-WEDOTS01,
9310-WEDOTS04, 9310-WEDOTS08, 9310-WEDOTS16)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
N/A N/A AvailableSeparately
VISUALIZATION
Studio 5000 View Designer
Included Included Included Included Included Included N/A
Visit our website at www.rockwellsoftware.com
DES
IGN
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
LIBRARY MANAGEMENT
Studio 5000 Application Code Manager Lite Edition
Included Included Included Included Included Included
Included
Standard Edition Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
SECURITY / LICENSE BASED PROTECTION (SOURCE / EXECUTION) NOTE:
Password Based Protection, and FactoryTalk Security Server Support
(FTSP) are included in all editions of Studio 5000 Logix
Designer.
Studio 5000 License Portal (9326C-CPROT-xxx)****
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
CmStick Compact, No Storage (9509-CMSTICKC)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
CmStick 8GB Storage (9509-CMSTICK8)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
CmCard SD 4GB Storage (9509-CMSDCD4)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Studio 5000 License Source Protection Activation
(9324-SRCEPRO-TENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Logix Controller Execution Protection Activation
(9324-EXECPRO-TENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
SYSTEM CONFIGURATION NOTE: RSLinx Enterprise is included in all
editions of Studio 5000 Logix Designer.
RSLinx Classic Lite Included Lite Included Lite Included Lite
Included Lite Included Lite Included Lite Included
Studio 5000 Architect(9326-LGXARCH-ENE)
Included Included Included Included AvailableSeparately
AvailableSeparately
AvailableSeparately
Visit our website at www.rockwellsoftware.com
DES
IGN
- By Stephen Gates
- January 26, 2020
- Feature
Summary
By Stephen Gates, Owner, myPLCtraining.com
When it comes to industrial automation, Studio 5000 is one of the most widely used software packages in the world. Studio 5000 Logix Designer (formerly known as RSlogix 5000) is used to program the most powerful Allen-Bradley PLCs (technically PACs), including the ControlLogix and CompactLogix controllers.
In my career, I specialize in helping people become confident PLC programmers so they can advance their career or just get better at their job.
In this tutorial, I’m going to walk you through setting up your first project inside Studio 5000 Logix Designer. This is a key software that you need to learn to become a confident PLC programmer, so let’s jump right in.
This is what we will cover:
- Create a new project
- Adding I/O to the project
- Creating Ladder Logic
Create a New Project in Studio 5000 Logix Designer
If you have Studio 5000 installed on your PC, you should be able to find it in your applications under the folder called “Rockwell Software”
The icon will look like the following…
Once you open it up, you’ll be brought to a startup menu, that allows you to create a new project, open an existing project or get help on the software.
We are going to create a new project from scratch so we will choose “New Project” under the “Create” heading. From there we have a few options for project types, but we want to choose Logix in this case since we are going to be creating a Logix Designer PLC program.
Once, we have selected the type of project we want to create, it’s now time to choose the type of controller we want to use for the project. In this tutorial, we will use the Studio 500 Logix Emulate Controller. This controller emulates a physical controller by utilizing a portion of memory on your PC to act like a PLC controller.
We could choose any of the controller options but I’ll the next article in this series will cover the Studio 5000 Logix Emulate software, so using the Emulate controller in this example this will set us up for the next tutorial.
Ok, let’s give the controller a name. Let’s call it Pump_Control_Station. Then hit “Next”
At this point we can choose the revision number of the firmware we will use in the controller. I have Logix Designer version 30 on this computer so we will stick with the default revision, 30.
You also choose the type of chassis the controller will be in. (Note, that this is only true for ControlLogix, GuardLogix and Logix Emulate controllers since CompactLogix systems don’t use a chassis). We will leave at the default 4-slot chassis and leave the controller in the default slot position, slot 0.
Now click “Finish” to get your first project created!
Alright, now we have successfully created a new Logix Designer project. This what you should see when you first get into the software.
Adding I/O Modules to the Project
Ok, now that we have our project create let’s add some I/O modules to our configuration. Logix Designer makes this really easy to do.
On the left, inside the “Controller Organizer”, find the “I/O Configuration” item right-click the 1756-Backplane.
This is where we add input and output modules that will be controlled by our controller.
So, we choose New Module
Let’s add an analog input module and a discrete output module. Since we have a Logix Emulate controller it is going to restrict our options to ControlLogix I/O modules only. We can use filters to narrow our options even further. So we will choose analog.
Let’s just grab the first one available which is the 1756-IF16. A 16 channel voltage/current analog input module.
We don’t need to give it a name so we will just skip that and hit ”Ok” when the “New Module” dialog pops up.
Alright, now let’s add a discrete (or digital) output module. So change the filter from Analog to Digital. And let’s choose a 32 point output module for 24VDC, which will be the 1756-OB32.
And again, no need to name the module so we will just hit “Ok” on the “New Module” dialog box that pops up.
Here’s what you should see…
Alright, now we are making progress! We have Logix Designer project created with two I/O modules added.
Now let’s create some logic.
Creating Ladder Logic
This tutorial does not go into the details of how to use Ladder Logic, so if you’re new to Ladder Logic then you might want to check out this post.
For now we are just going to create one simple rung. The purpose this rung will be to turn on a pump when the tank level we are reading goes above 50%.
We are going to keep this as simple as possible.
First, open up the default ladder logic routine that is created when you create a new project. MainTask > MainProgram > Main Routine.
Next we will use the instructions tab above the logic area to choose to Ladder Logic instructions.We will need “greater than” comparison instruction to create our logic.
We can find that in the “Compare” tab and the instruction is labeled “GRT”. Just click and drag the GRT onto the first rung of the Ladder Logic routine.
Alright now, remember we want this logic to turn on a pump when the level of the tank gets above 50%. Our pump is getting controlled by the discrete output module: the 1756-OB32 module.
So we will use an output energize instruction which works much like a basic on/off relay coil. The output energize instruction, or OTE. The OTE should on the “Favorites” tab and the “Bit” tab
Ok, now we need to address our instructions to our I/O modules so we can read the correct data in and write to the correct points.
For GRT instruction, remember we are going to be comparing the analog input to 50%. And will use channel 5 from the analog input module. Now the syntax is a little different depending on the module type you’re using but you can always browse through the available tags and addresses from a module by going into the controller tags or just by clicking in the tag field of any instruction and then clicking the drop-down menu.
Since our analog input module is in slot 1, we will use Local:1:I and expand that. One thing that is pretty consistent with the addressing syntax I/O modules in Logix Designer is that your I/O point or channel data will almost always have the word “
data” in it.
Since we want channel 5 we scroll down until we see something with Ch5 and “Data” in it. So the correct address, in this case, ends up being Local:1:I.Ch5Data
And we want to compare that analog input value to 50. So, in source B of the GRT instruction we will put the number 50.
Next, we will address the OTE instruction. Remember the discrete output module is in slot 2, so we will be browsing for Local:2. And since it’s an output module it should have an O in the address. Which becomes Local:2:O.Data
And then we need to choose which output point will be used from the 32 point module. Let’s use point 19. So that becomes Local:2:O.Data.19.
And that completes our ladder logic example. Now, we will do one more thing to make sure our program runs like we want it and that is to make sure the analog input is scaled properly. As we earlier we want the analog input to giving us a percentage of the tank fullness level. So we want the Ch5 address to give us a value between 0-100%.
To set up the scaling let’s go into the module properties for the 1756-IF16. Just double-click the module in the I/O tree to open the properties.
And that should bring up the properties…once we are in the properties we want to do the following:
- Navigate to Ch05
- Change the input type from Current (A) to Voltage (V)
- Change the input range from 0-10V (in this example, we imagine that the tank level sensor puts out a 0-10V signal)
- Make sure the signal is scaled from 0 to 10 V
- Change the engineering units to %
This configuration ensures that when we get an analog voltage signal of 10V into channel 5, that it’s scaled to 100% and if the sensor is giving us a 5V signal it gets scaled to 50% and so on.
Wrapping Up
Now you should be able to create Studio 5000 Logix Designer project from scratch, add the necessary I/O modules and even create some ladder logic, using addresses from your I/O modules.
In the next article, we will explore how to use Logix Designer with Logix Emulate so you can test your logic, simulate your machines and just have some fun experimenting with PLC programming. So stay tuned for that!
In the meantime, if you have more questions about the topics we touched on in this article, here are some options to learn more:
- Studio 5000 Software
- Ladder Logic Programming
- Comparison Instructions in Ladder Logic
Look forward to helping you become a confident PLC
About The Author
Stephen Gates, the owner of myPLCtraining.com, specializes in helping people become confident PLC programmers so they can advance their career or just get better at their job.
Click Here for More Information
Did you enjoy this great article?
Check out our free e-newsletters to read more great articles..
Subscribe
Studio 5000
The Studio 5000 Logix Designer® application is a scalable application solution, used to program and configure any of the Logix 5000 family of controller products. Depending on the functionality required, one or more product catalog numbers might be needed to acquire the appropriate functionality. The following table will help you to determine which Studio 5000 Logix Designer application package is best suited for your application needs.
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
CatalogNumber
9324-RLD700NX-ENE (English)
9324-RLD700NXINT (International)
9324-RLD600ENE(English)
9324-RLD-600INTL(International)
9324-RLD300NX-ENE(English)
9324-RLD300NX-INT(International)
9324-RLD300ENE(English)
9324-RLD-300INTL(International)
9324-RLD250ENE(English)
9324-RLD-250INTL(International)
9324-RLD200ENE(English)
9324-RLD-200INTL(International)
9324-RLD000ENE(English)
9324-RLD-000INTL(International)
ControllersSupported
CompactLogix, ControlLogix, Compact Guard-Logix, GuardLogix Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix Familes
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix Familes
CompactLogix, Compact GuardLogix Families
CompactLogix, Compact GuardLogix Families
CompactLogix, ControlLogix, Compact Guard-Logix, Guard-Logix Families
PROGRAMMING EDITORS
Ladder Diagram (LD)
Fully Supported Fully Supported Fully Supported Fully Supported Fully Supported Fully Supported Upload/Download andView Only
Function BlockDiagram (FBD)and Drive control blocks(9324-RLDFB-DENE, or via9324-RLDMLPE)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download andView Only
Structured Text (ST)(9324-RLDSTXE,or via 9324-RLD-MLPE)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download andView Only
SequentialFunction Chart(SFC)***(9324-RLDSFCE,or via 9324-RLD-MLPE)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download andView Only
GuardLogixSafety Editor(9324-RLDGLXE)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download andView Only
PhaseManager(9324-RLDPME)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download Included
Sequence Manager (9324-RLDSQMN)
Fully Supported Fully Supported Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/DownloadIncluded, EditorAvailableSeparately
Upload/Download Included
DES
IGN
Visit our website at www.rockwellsoftware.com
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
ADDITIONAL ADD-ONS
AdvancedProcess Controlinstructions – Design license and runtime license for one controller(9324-RLDAP-CENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Upload/Download andView Only
AdvancedProcess Controlinstructions –Runtime licensefor one controller(9324-RLDAPC-CLENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Upload/Download andView Only
FBD PIDE Autotune(requiresFBD option)(9323-ATUNEENE)
Included Included AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableUpload/Download andView Only
FuzzyDesigner(9324-RLD-FZYENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
RSNetWorx forControlNet,DeviceNet,EtherNet/IP(9357-CNETL3,9357-DNETL3,9357-ENETL3individually or9357-ANETL3combined)
Included AvailableSeparately
Included AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
VIRTUAL DESIGN
Studio 5000 Logix Emulate(9310-WE-D200ENE)
Included AvailableSeparately
AvailableSeparately
AvailableSeparately
N/A N/A AvailableSeparately
Studio 5000 Logix Emulate for Operator Training (9310-WEDOTS01, 9310-WEDOTS04, 9310-WEDOTS08, 9310-WEDOTS16)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
N/A N/A AvailableSeparately
VISUALIZATION
Studio 5000 View Designer
Included Included Included Included Included Included N/A
Visit our website at www.rockwellsoftware.com
DES
IGN
STUDIO 5000 LOGIX DESIGNERBUNDLE*
PROFESSIONALEDITION
FULL EDITION
STANDARD/NETWORKEDITION
STANDARDEDITION
LITE EDITION
MINI EDITION
SERVICEEDITION**
LIBRARY MANAGEMENT
Studio 5000 Application Code Manager Lite Edition
Included Included Included Included Included Included Included
Standard Edition Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
SECURITY / LICENSE BASED PROTECTION (SOURCE / EXECUTION) NOTE: Password Based Protection, and FactoryTalk Security Server Support (FTSP) are included in all editions of Studio 5000 Logix Designer.
Studio 5000 License Portal (9326C-CPROT-xxx)****
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
Subscription Available Separately
CmStick Compact, No Storage (9509-CMSTICKC)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
CmStick 8GB Storage (9509-CMSTICK8)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
CmCard SD 4GB Storage (9509-CMSDCD4)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Studio 5000 License Source Protection Activation (9324-SRCEPRO-TENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
Logix Controller Execution Protection Activation (9324-EXECPRO-TENE)
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
AvailableSeparately
SYSTEM CONFIGURATION NOTE: RSLinx Enterprise is included in all editions of Studio 5000 Logix Designer.
RSLinx Classic Lite Included Lite Included Lite Included Lite Included Lite Included Lite Included Lite Included
Studio 5000 Architect(9326-LGXARCH-ENE)
Included Included Included Included AvailableSeparately
AvailableSeparately
AvailableSeparately
Visit our website at www.rockwellsoftware.com
DES
IGN
*Logix Designer application now ships with only concurrent licensing. Software is designed to use highest functionality license first. For example, if Standard,Full, and Professional licenses are available on the FactoryTalk Activation server, Logix Designer application will use the highest functionality license first (that is, Professional).
**Service Edition requires controller firmware at revision 12 or later.
***The Structured Text editor option is required to program SFC Actions and SFC Transitions using the Structured Text language.
****Available as a subscription only. Must be ordered through software subscription portal.
Publication 9324-QR001E-EN-P – February 2018Supersedes Publication 9324-QR001D-EN-P – July 2017
Copyright ©2018 Rockwell Automation, Inc. All Rights Reserved. Printed in USA.
Allen-Bradley, FactoryTalk Studio 5000 Logix Designer, LISTEN.THINK.SOLVE. and Rockwell Software are trademarks of Rockwell Automation, Inc. Trademarks not belonging to Rockwell Automation are property of their respective companies.
- Обязательно представиться на русском языке кириллицей (заполнить поле «Имя»).
- Фиктивные имена мы не приветствуем. Ивановых и Пупкиных здесь уже достаточно.
- Не писать свой вопрос в первую попавшуюся тему — вместо этого создать новую тему.
- За поиск, предложение и обсуждение пиратского ПО и средств взлома — бан без предупреждения.
- Рекламу и частные объявления «куплю/продам/есть халтура» мы не размещаем ни на каких условиях.
- Перед тем как что-то написать — читать здесь и здесь.
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Инструкции Logix5000
Сообщение
kuol »
Здравствуйте.
Подскажите, пожалуйста, есть ли в Logix5000 инструкции переключения по заднему и переднему фронту. Например как в step 7.
Заранее благодарю за ответ.
-
Ryzhij
- почётный участник форума
- Сообщения: 5462
- Зарегистрирован: 07 окт 2011, 09:12
- Имя: Гаско Вячеслав Эриевич
- Страна: Россия
- город/регион: Рязань
- Благодарил (а): 477 раз
- Поблагодарили: 650 раз
Re: Инструкции Logix5000
Сообщение
Ryzhij »
Здравствуйте.
Конечно есть. Это OSR и OSF
А вообще, Ольга Викторовна, у Вас кнопка F1 на клавиатуре работает?
—————————————————
«У человека в душе дыра размером с Бога, и каждый заполняет её как может.» (Жан-Поль Сартр)
«Ту пустоту, которая остаётся в душе, когда в ней нет Бога, и весь мир не может заполнить.» (святитель Николай Сербский)
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Re: Инструкции Logix5000
Сообщение
kuol »
Ryzhij писал(а):Здравствуйте.
Конечно есть. Это OSR и OSF
А вообще, Ольга Викторовна, у Вас кнопка F1 на клавиатуре работает?
Конечно работает. Есть простая задача. Имеется кнопка без фиксации. Нужно чтоб по одному нажатию она запускала систему, по второму останавливала. В step 7 реализовать получилось. В Logix 5000 с теми же инструкциями не выходит. в чем может быть проблема.
Заранее извиняюсь. В этом деле новичок.
У вас нет необходимых прав для просмотра вложений в этом сообщении.
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Re: Инструкции Logix5000
Сообщение
kuol »
kuol писал(а):
Ryzhij писал(а):Здравствуйте.
Конечно есть. Это OSR и OSF
А вообще, Ольга Викторовна, у Вас кнопка F1 на клавиатуре работает?Конечно работает. Есть простая задача. Имеется кнопка без фиксации. Нужно чтоб по одному нажатию она запускала систему, по второму останавливала. В step 7 реализовать получилось. В Logix 5000 с теми же инструкциями не выходит. в чем может быть проблема.
Заранее извиняюсь. В этом деле новичок.
Хотя кажется нужно выходной бит в инструкции OSF сменить на на требуемый выход (DO)
-
Ryzhij
- почётный участник форума
- Сообщения: 5462
- Зарегистрирован: 07 окт 2011, 09:12
- Имя: Гаско Вячеслав Эриевич
- Страна: Россия
- город/регион: Рязань
- Благодарил (а): 477 раз
- Поблагодарили: 650 раз
Re: Инструкции Logix5000
Сообщение
Ryzhij »
Обратите внимание на на логику.
В Step7 Вы используете в условиях как вход, так и выход, а в RSLogix5000 только вход.
В результате верхняя ветка не будет выполняться никогда.
Не хотите путаться — создайте теги-алиасы для входов и выходов и работайте уже с удобоваримыми именами тегов.
—————————————————
«У человека в душе дыра размером с Бога, и каждый заполняет её как может.» (Жан-Поль Сартр)
«Ту пустоту, которая остаётся в душе, когда в ней нет Бога, и весь мир не может заполнить.» (святитель Николай Сербский)
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Re: Инструкции Logix5000
Сообщение
kuol »
Ryzhij писал(а):Обратите внимание на на логику.
В Step7 Вы используете в условиях как вход, так и выход, а в RSLogix5000 только вход.
В результате верхняя ветка не будет выполняться никогда.
Не хотите путаться — создайте теги-алиасы для входов и выходов и работайте уже с удобоваримыми именами тегов.
Тогда признаться запуталась, что писать в OSF. (Вроде делаю тоже самое, что и в Step7)
Но ладно. Начнем сначала. Имеется вход Local:2:I.Data[1].0 И выход Local:2:O.Data[0].0. Нужна еще инструкция переключение по заднему фронтe OSF. (она осуществляет переход сторожевого бита из 1 в 0) т.е. непонятно какой адрес имеет сторожевой бит, а какой выходной.
-
Ryzhij
- почётный участник форума
- Сообщения: 5462
- Зарегистрирован: 07 окт 2011, 09:12
- Имя: Гаско Вячеслав Эриевич
- Страна: Россия
- город/регион: Рязань
- Благодарил (а): 477 раз
- Поблагодарили: 650 раз
Re: Инструкции Logix5000
Сообщение
Ryzhij »
Сначала, так сначала.
1) Для удобства работы создаём булевые теги-алиасы
Input_1 для входа Local:2:I.Data[1].0
и Output_1 для выхода Local:2:O.Data[0].0
2) Записываем строку с использованием Input_1 и функционального блока OSR (событие по нажатию — OSR, по отпусканию — OSF).
Для работы функционального блока «по ходу пьессы» определяем два бита В ПАМЯТИ — MemStorage_1 и MemOutput_1
А далее как обычно, если выход не взведён, то взводим, а если взведён — сбрасываем.
OSR.GIF
PS При записи в одну строку для переключения по отпусканию кнопки достаточно «перевернуть» для Input_1 опрос c Ttrue (XIC) на False (XIO), а функцию оставить OSR.
У вас нет необходимых прав для просмотра вложений в этом сообщении.
Последний раз редактировалось Ryzhij 21 окт 2015, 15:39, всего редактировалось 1 раз.
—————————————————
«У человека в душе дыра размером с Бога, и каждый заполняет её как может.» (Жан-Поль Сартр)
«Ту пустоту, которая остаётся в душе, когда в ней нет Бога, и весь мир не может заполнить.» (святитель Николай Сербский)
-
Ryzhij
- почётный участник форума
- Сообщения: 5462
- Зарегистрирован: 07 окт 2011, 09:12
- Имя: Гаско Вячеслав Эриевич
- Страна: Россия
- город/регион: Рязань
- Благодарил (а): 477 раз
- Поблагодарили: 650 раз
Re: Инструкции Logix5000
Сообщение
Ryzhij »
kuol писал(а):Нужна еще инструкция переключение по заднему фронтe OSF. (она осуществляет переход сторожевого бита из 1 в 0) т.е. непонятно какой адрес имеет сторожевой бит, а какой выходной.
StorageBit — означает «бит для запоминания предыдущего состояния», а не «сторожевой бит».
—————————————————
«У человека в душе дыра размером с Бога, и каждый заполняет её как может.» (Жан-Поль Сартр)
«Ту пустоту, которая остаётся в душе, когда в ней нет Бога, и весь мир не может заполнить.» (святитель Николай Сербский)
-
Jackson
- администратор
- Сообщения: 16539
- Зарегистрирован: 17 июн 2008, 16:01
- Имя: Евгений свет Брониславович
- Страна: Россия
- город/регион: Санкт-Петербург
- Благодарил (а): 625 раз
- Поблагодарили: 1127 раз
Re: Инструкции Logix5000
Сообщение
Jackson »
Ryzhij писал(а):StorageBit — означает «бит для запоминания предыдущего состояния», а не «сторожевой бит».
Это пять!
В цитатник.
По вопросам работы Форума можно обратиться по этим контактам.
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Re: Инструкции Logix5000
Сообщение
kuol »
Ryzhij писал(а):Сначала, так сначала.
1) Для удобства работы создаём булевые теги-алиасы
Input_1 для входа Local:2:I.Data[1].0
и Output_1 для выхода Local:2:O.Data[0].02) Записываем строку с использованием Input_1 и функционального блока OSR (событие по нажатию — OSR, по отпусканию — OSF).
Для работы функционального блока «по ходу пьессы» определяем два бита В ПАМЯТИ — MemStorage_1 и MemOutput_1
А далее как обычно, если выход не взведён, то взводим, а если взведён — сбрасываем.OSR.GIF
PS При записи в одну строку для переключения по отпусканию кнопки достаточно «перевернуть» для Input_1 опрос c Ttrue (XIC) на False (XIO), а функцию оставить OSR.
Сделала всё по Вашим инструкциям. Только не пойму почему установка выхода OB в (OSR) происходит рандомно.
У вас нет необходимых прав для просмотра вложений в этом сообщении.
-
Ryzhij
- почётный участник форума
- Сообщения: 5462
- Зарегистрирован: 07 окт 2011, 09:12
- Имя: Гаско Вячеслав Эриевич
- Страна: Россия
- город/регион: Рязань
- Благодарил (а): 477 раз
- Поблагодарили: 650 раз
Re: Инструкции Logix5000
Сообщение
Ryzhij »
kuol писал(а):Сделала всё по Вашим инструкциям. Только не пойму почему установка выхода OB в (OSR) происходит рандомно.
Вы его просто не видите. Это очень короткий импульс в один скан программы. Поскольку обмен через RSLinx осуществляется совершенно асинхронно с исполнением программы как в реальном процессоре, так и в эмуляторе, он-лайн наблюдение за такими короткими импульсами ничего не даёт.
Инструкции Latch/UnLatch работают чётко, не так ли?
—————————————————
«У человека в душе дыра размером с Бога, и каждый заполняет её как может.» (Жан-Поль Сартр)
«Ту пустоту, которая остаётся в душе, когда в ней нет Бога, и весь мир не может заполнить.» (святитель Николай Сербский)
-
Looker
- эксперт
- Сообщения: 1081
- Зарегистрирован: 09 фев 2011, 11:32
- Имя: Дитрих Евгений Линусович
- город/регион: Донецк
- Благодарил (а): 236 раз
- Поблагодарили: 174 раза
Re: Инструкции Logix5000
Сообщение
Looker »
Работающий код, показано состояние «готовности» для выключения (нижняя ветка) при переходе input_1 с 1 в 0.
Для «ленивых»:
Код: Выделить всё
XIO input_1 ONS Storage_ONS BST XIO Output_1 OTE for_Disable_OFF_is_ON OTL Output_1 NXB XIC Output_1 XIO for_Disable_OFF_is_ON OTU Output_1 BND
Ryzhij писал(а):
kuol писал(а):Сделала всё по Вашим инструкциям. Только не пойму почему установка выхода OB в (OSR) происходит рандомно.
Вы его просто не видите. Это очень короткий импульс в один скан программы…
Если очень сильно хочется увидеть факт редкого выполнения: надо последней инструкцией строки поставить OTL, важно — тег этого OTL в других местах не использовать, а сбрасывать вручную.
_______________________________________________
Узкая специализация в широком смысле этого слова ведет к широкой идиотизации в узком смысле этого слова . (С) Бернард Шоу
-
kuol
- здесь недавно
- Сообщения: 23
- Зарегистрирован: 20 авг 2014, 15:12
- Имя: Ольга
- Страна: РФ
- город/регион: Хабаровск
Re: Инструкции Logix5000
Сообщение
kuol »
Всем спасибо за ответ и проявленное внимание. Тема закрыта. Задача решена.
Вернуться в «Средний уровень автоматизации (управляющий)»
Перейти
- Работа форума
- База знаний (Knowledge Exchange)
- ↳ Eplan Electric P8
- ↳ Общий F.A.Q.
- ↳ Общие вопросы
- ↳ Новости
- ↳ Ошибки
- ↳ Проект
- ↳ Изделия
- ↳ Устройства
- ↳ Соединения
- ↳ Кабели
- ↳ Клеммы
- ↳ ПЛК
- ↳ Компоновка 2D
- ↳ Макросы
- ↳ Eplan API
- ↳ Сценарии (Только готовые решения)
- ↳ Внешняя обработка
- ↳ ProPanel
- ↳ Инструкции ProPanel (Только готовые решения)
- ↳ Прочие направления Eplan
- ↳ FieldSys (Топология)
- ↳ Preplanning
- ↳ Harness proD
- ↳ EEC One
- ↳ Advantech
- ↳ F.A.Q., Инструкции
- ↳ Allen Bradley
- ↳ Общие вопросы
- ↳ ПЛК
- ↳ Операторские панели
- ↳ B&R Automation
- ↳ F.A.Q.
- ↳ Danfoss
- ↳ DEIF A/S
- ↳ Общие вопросы
- ↳ UNI-LINE
- ↳ MULTI-LINE
- ↳ MULTI-LINE 300
- ↳ Emerson
- ↳ Общие вопросы
- ↳ КИП и регуляторы
- ↳ DeltaV
- ↳ ОВЕН
- ↳ Прософт-Системы
- ↳ Общие вопросы
- ↳ ПЛК REGUL
- ↳ Schneider Electric
- ↳ Общие вопросы
- ↳ ПЛК
- ↳ Панели оператора
- ↳ SCADA
- ↳ Электротехника
- ↳ Приводная техника
- ↳ SIEMENS
- ↳ Общие вопросы
- ↳ LOGO!
- ↳ ПЛК SIMATIC (S7-200, S7-1200, S7-300, S7-400, S7-1500, ET200)
- ↳ Simatic Step7
- ↳ Simatic TIA Portal
- ↳ Simatic PCS 7
- ↳ Операторские панели
- ↳ WinCC
- ↳ Приводная техника (Sinamics, Micromaster, Masterdrive, Simoreg, Simotics)
- ↳ SmartGen
- ↳ Общие вопросы
- ↳ Промышленные (береговые) контроллеры
- ↳ Морские контроллеры и устройства
- ↳ WEINTEK (операторские панели)
- ↳ F.A.Q., Инструкции
- ↳ Архив
- ↳ Микроконтроллеры и электроника
- ↳ Arduino
- ↳ Raspberry
- ↳ Другие микроконтроллеры
- ↳ Электроника
- Общие вопросы АСУТП
- ↳ Общие вопросы
- ↳ Вопросы от студентов
- ↳ Литература
- ↳ Новости и отчётность
- ↳ Нормативы, ГОСТы, стандарты
- ↳ Информационная безопасность
- ↳ Проектирование и САПР
- ↳ Системная интеграция
- ↳ Разбор полетов
- ↳ Работа
- ↳ Заготовки для базы знаний
- ↳ Производство и технология
- ↳ MES — Системы автоматизации управления производством
- ↳ Метрология, КИП и датчики
- ↳ Исполнительные устройства, регуляторы
- ↳ Средний уровень автоматизации (управляющий)
- ↳ ПЛК Flexem
- ↳ Алгоритмы
- ↳ Операторские панели
- ↳ Верхний уровень автоматизации (отображение)
- ↳ GE iFix
- ↳ Wonderware Intouch
- ↳ MasterScada
- ↳ SCADA+
- ↳ Альфа платформа
- ↳ Интерфейсы, протоколы, связь
- ↳ Радиосвязь
- ↳ Полезное ПО
- ↳ Электротехника, энергетика и электропривод
- ↳ Генераторы, электростанции и силовые агрегаты
- ↳ Теплотехника
- ↳ Подбор аналогов
- F.A.Q.
- ↳ Документация (вариант 1)
- ↳ Документация (вариант 2)
- ↳ Электротехника и электроэнергетика
- ↳ F.A.Q. по программируемым логическим контроллерам (PLC)
- ↳ Обсуждение F.A.Q. по PLC
- ↳ F.A.Q. по выбору PLC
- ↳ F.A.Q. по аппаратной части PLC
- ↳ F.A.Q. по языкам программирования
- ↳ F.A.Q. по структуре программ
- ↳ F.A.Q. по взаимодействию PLC с HMI
- О жизни
- ↳ Для дома, для семьи
- ↳ Комната смеха
- ↳ Электродвижение