Streamline Programming Do-More EasyPLC Transfer

The EasyPLC Software Suite is a comprehensive package with PLC, HMI, and Machine Simulator software. It features a Machine Simulator (MS) that allows virtual communication with many programmable logic controllers (PLCs) in a 3D world with real-time graphics and physical properties. Our PLC programming example will follow the five steps to PLC program development.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
We will use the simulator’s pre-built transfer line machine to learn PLC programming. We will focus on developing ladder logic, connecting via Modbus TCP, and testing our program using the free Do-More Designer PLC programming software and simulator. Let’s begin!

Learn PLC programming the easy way. See below for a 10% discount on this cost-effective learning tool. Invest in yourself today.
The entire series can be found here.
Here are some previous posts we have done:
Easy PLC Installing the SoftwareVideo
EasyPLC Software Suite – Quick StartVideo
Click PLC – Easy Transfer Line ProgrammingVideo
Productivity PLC Simulator – Chain Conveyor MSVideo
Do-More PLC – EasyPLC Box Selection ProgramVideo
Click PLC EasyPLC Gantry SimulatorVideo
Click PLC Simple Conveyor EasyPLCVideo
EasyPLC Paint Line Bit Shift – BRX Do-More PLCVideo
Click PLC – EasyPLC PLC Mixer ProgrammingVideo
Click PLC EasyPLC Warehouse Stacker ExampleVideo
–  Operation Video
EasyPLC Machine Simulator Productivity PLC Robotic CellVideo
EasyPLC Simulator Robotic Cell Click PLCVideo
EasyPLC Simulator Robotic Cell BRX Do-More PLCVideo
EasyPLC Factory Editor Robotic Cell Additions Video
4 Way Traffic Light PLC Program EasyPLCVideo
Rock Crusher Plant EasyPLC BRX Do-MoreVideo
Freight Carrier Weighing and Distribution EasyPLCVideo
EasyPLC Machining Center Loading RobotsVideo
EasyPLC Palletizing Robot Programming Click PLCVideo
EasyPLC Machine Editor – Design a SimulationVideo
PLC Programming Mixing Tank – EasyPLC / Do-MoreVideo
EasyPLC Solder Robot PLC ProgrammingVideo
PLC Programming – A Tutorial for BeginnersVideo
Automated Parking Demo Video
Parking Cars Simulator PLC Programming Part 1Video
Parking Cars Simulator PLC Programming Part 2Video
PLC Programming with Pneumatic SynchronizationVideo
The Ultimate Guide to PLC Programming for Sorting OperationsVideo
Optimizing Batch Processing with PLC SystemsVideo
PLC Multi Conveyor Feed Control Demystified!Video
PLC Program Sequence for Efficient Robot LoadingVideo

Define the task: (Step 1 – Do-More PLC EasyPLC Transfer Line)

The first step of PLC program development is to define the task to determine what must be done. EasyPLC software suite contains this easy transfer line example in the machine simulator. This is just one of many machines with the software so you can learn and develop your PLC programming skills.
Start the EasyPLC Machine Simulator (MS). Select the start button on the main page or select machines from the main menu at the top of the machine’s simulator window.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
All the available machines will now be displayed. Click on the “01 Easy Transfer Line.”
This is the example that we will be programming. To the left of the screen, information will be displayed on how this process needs to function.
The photocell detects high boxes and sends them to the second conveyor using the pneumatic pusher. Conveyors are activated with digital output 1. We will also include the control panel. The green start light will be on when the system is ready to run. When the start is pressed, the stop light will be on to indicate how the system is stopped. Pressing the emergency stop button will turn off both lights and stop the sequence.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
The machine simulator has a demo mode for the built-in machines. Select the demo mode. This will allow you to watch the operation of the easy transfer line and help see what must be done.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
Press the control buttons in the simulator to operate the machine. Move around the 3D virtual environment. The icons on the top of the window will allow you to move around this 3D environment.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
The first icon is the default selection. This will enable you to move around without bumping into the components. The first-person mode will mimic a person in your 3D learning world.
The third person is used to show the operator’s relationship to the machine. The last icon will automatically show you around this virtual environment. Once we understand what must be done, we can move on to the next step in our PLC program development.
Watch the sequence of operation video below.

Define the Inputs and Outputs: (Step 2 – Do-More PLC EasyPLC Transfer Line)

The written version specifies that we will require four digital outputs and five digital inputs for our easy transfer line.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
While still in the demo mode of the machine simulator, we can select the View IO on the bottom menu.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
This will now show the digital outputs on the left-hand side of the screen and the digital inputs on the right-hand side of the screen.
The machine simulator will be communicating with a Do-More Designer PLC Simulator. Communication will be done with Modbus TCP (Ethernet).
The Do-More Series of PLCs use a fixed Modbus memory area. This area can be seen in the following chart.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line
The following table will define the inputs and outputs (IO) and Modbus addresses in the Do-More PLC we will use for this program. (EasyPLC Easy Transfer Line)

Digital Type Description Do-More PLC Modbus Address Machine Simulator Modbus Address
PLC Output – MS Input Conveyor MI1 – 10001 0
PLC Output – MS Input Pneumatic Pusher MI2 – 10002 1
PLC Output – MS Input Start PB Light MI3 – 10003 2
PLC Output – MS Input Stop PB Light MI4 – 10004 3
PLC Input – MS Output Pneumatic Cylinder Extend MC1 – 1 0
PLC Input – MS Output Photocell MC2 – 2 1
PLC Input – MS Output Start PB MC3 – 3 2
PLC Input – MS Output Stop PB MC4 – 4 3
PLC Input – MS Output Emergency Stop MC5 – 5 4

Note: The machine simulator will be offset by one on the Modbus Addresses. See the video below for the demo mode and determining inputs and outputs.

The EasyPLC start mode will allow you to manually control this sorting operations machine. Exit the demo mode and enter the start mode for this machine.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line

Develop a logical sequence of operation: (Step 3 – Do-More PLC EasyPLC Transfer Line)

A flow chart or sequence table is used to understand the process that needs to be controlled thoroughly. It must also answer questions like the following:

What happens when electrical power and/or pneumatic air is lost? What happens when the input/output devices fail? Do we need redundancy?

Knowing all of these answers upfront is vital in developing the PLC program. This step is where you can save yourself a lot of work by understanding everything about the operation. It will help prevent you from continuously re-writing the PLC program logic.
Here is the sequence table for the easy transfer line.
Sequence Table
You read the input conditions and then look to the right-hand side for the outputs that will be set. The following line will then look for the input conditions again.

Develop the PLC program: (Step 4 – Do-More PLC EasyPLC Transfer Line)

Writing the ladder logic code for the PLC example will be the next step in our program development.
Starting and stopping the conveyor is done with a set and reset instruction.
Ladder logic sample program
When the emergency stop is activated, both lights are off. This indicates to the operator that the emergency stop must be reset.
Ladder logic sample program
When the photocell sees the high boxes, this activates the pneumatic pusher. When the pusher reaches the extended position, it will reset the pneumatic pusher.
Ladder logic sample program
Watch the video below to see this program in operation.

Test the program: (Step 5 – Do-More PLC EasyPLC Transfer Line)

We will use Modbus TCP on our Do-More PLC simulator to communicate with the machine simulator.
PLC Simulator
We must be connected to the Do-More simulator with Do-More designer programming software to view the IP address of the simulator. Select system configuration from the main menu | PLC.
Modbus TCP Settings
System configuration can also be selected under Tools in the project browser window.
Modbus TCP Settings
The IP address can be seen under the internal ethernet port configuration.
Ensure the Enable Modbus/TCP Server is selected so the EasyPLC machine simulator can act as the Modbus/TCP Client.
Call up the EasyPLC Easy Transfer Line in start mode.
Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line

When using EasyPLC, debugging is quickly done without damaging any equipment. You may modify your logic several times before you get everything right! To learn more about developing logic, check out our tutorials on the five steps to PLC program development.

You can practice your modification and debug by modifying the Easy Transfer Line operation in the following way:
– Add a counter for the large box conveyor to show the total. The control panel will need a reset button for this count.
– Calculate the rate of these boxes in boxes per hour.
Let me know how you make out in the comments below.

Download the Do-More PLC sample program and sequence chart for the Easy Transfer Line.

Watch the video below to see the five steps of program development applied to the transfer line. The machine simulator is one of the best applications to help you learn PLC programming.

EasyPLC Software Suite is a complete PLC, HMI, and Machine Simulator package. This PLC learning package includes the following:
Easy PLC – PLC Simulation allows programming in Ladder, Grafcet, Logic Blocks, or Script.
HMI System – Easily create a visual human-machine interface (HMI)
Machine Simulator – A virtual 3D world with real-time graphics and physical properties. PLC programs can be tested using EasyPLC or through other interfaces. (Modbus RTU, TCP, etc.)
Machine Simulator Lite – Designed to run on Android Devices.
Machine Simulator VR – Virtual Reality comes to life so you can test, train or practice your PLC programming.

Purchase your copy of this learning package for less than USD 75 for a single computer install or less than USD 100 to allow different computers.
Receive 10% off the price by typing in ACC in the comment section when you order. http://www.nirtec.com/index.php/purchase-price/
Learn PLC programming the easy way. Invest in yourself today.

Watch on YouTube: Streamline Your Programming with Do-More PLC EasyPLC Easy Transfer Line

If you have any questions or need further information, please get in touch with me.
Thank you,
Garry


If you’re like most of my readers, you’re committed to learning about technology. Numbering systems used in PLCs are not challenging to learn and understand. We will walk through the numbering systems used in PLCs. This includes Bits, decimals, Hexadecimal, ASCII, and Floating points.

To get this free article, subscribe to my free email newsletter.


Use the information to inform other people how numbering systems work. Sign up now.

The ‘Robust Data Logging for Free’ eBook is also available for free download. The link is included when you subscribe to ACC Automation.

Leave a Comment