2. Interface settings
After installation, the PG/PC interface needs to be set up in the Windows Control Panel or STEP 7 Lite. Select 'PC Adapter (MPI)' as the access path and configure it as a USB interface in the properties. This step ensures the establishment of a stable MPI communication connection between the PC and CPU 312C.
STEP 7 Lite Project Configuration: Mapping Hardware in Software
In automation engineering, hardware configuration is a crucial step, which is the process of defining actual physical modules and their parameters in programming software.
1. Create project and hardware configuration
After opening STEP 7 Lite, first create a new S7-300 site. The software interface will display virtual installation rails. Subsequently, based on the actual hardware, drag and drop from the hardware directory in sequence:
Power module (such as PS 307 5A)
CPU 312C (requires accurate selection of order number and firmware version)
The software will automatically assign I/O addresses (such as I0.0-I0.3, Q0.0-Q0.5) to the module, which is the basis for subsequent programming addressing.
2. CPU parameter settings
Double click on the CPU in the rack to enter the property settings. An important security parameter is' retention memory '. To prevent uncontrolled restart of the device after power failure, it is recommended to set the number of retention storage bits (such as M memory) to 0 in this example. This means that after a power outage, all intermediate states will be lost and the system must be restarted.
3. Establish online connection and download configuration
After connecting the hardware via PC Adapter USB, click on "Establish Online Connection" in STEP 7 Lite. After successful connection, the status bar will display the running status of the CPU (such as STOP).
Before downloading, it is best to perform a "memory reset" on the CPU to clear the original configuration and program. Subsequently, download the edited hardware configuration to the CPU. After downloading, you can use the "online and offline comparison" function to ensure that the configuration in the software is completely consistent with the actual configuration in the CPU, which is the basis for the correct execution of the program.
Ladder diagram programming and debugging: implementing control logic
1. Understanding of program structure
The control logic is written in the organizational block OB1, which is the main program for CPU loop execution. This example program uses ladder diagram (LAD) language, which is intuitive and easy to read. The program consists of multiple "networks", each containing contacts (representing input conditions) and coils (representing output actions), connected through logical relationships such as "and" or ".
2. Program logic analysis
For conveyor belt control, the program needs to implement:
Start stop circuit: Press the "Start" button (I0.0), the motor runs (Q0.0) and locks itself; Press the 'Stop' button (I0.1) to stop the motor.
Direction interlock: The "clockwise" (I0.2) and "counterclockwise" (I0.3) buttons interlock to ensure that only one direction signal is valid at the same time, driving different output points (such as Q0.3 and Q0.5) respectively.
3. Download and test run
Download the complete project (including hardware configuration and program) to the CPU. Then turn the mode selection switch on the CPU to the RUN position, and the RUN LED will light up.
Subsequently, functional testing will be conducted:
Press the green "start" button and observe that the corresponding input LED lights up, while the motor operation output LED lights up.
Press the "clockwise" button, the motor direction output LED changes, simulating direction switching.
Press the red 'stop' button to turn off all output LEDs.
The entire process intuitively demonstrates the complete PLC control flow of "input (button) → program logic processing → output (motor control)".
Fault diagnosis and resource extension
1. Basic diagnosis
If the system is abnormal, you can troubleshoot from the following points:
Power supply: Check if the 24V DC power LED is lit.
Communication: Check the LED status of the PC Adapter USB and confirm that the MPI connection is normal.
CPU status: The SF (system fault) LED lights up, usually indicating a configuration error or hardware failure. Details can be viewed through the online diagnostic function of STEP 7 Lite.
I/O status: Force or monitor input/output points in software to determine whether it is an external wiring issue or an internal logic issue.
2. In depth learning resources
After completing the introductory practice, you can deepen your learning through the following resources:
Accompanying documents: online help for STEP 7 Lite (F1), electronic manual for "STEP 7 Lite Beginner's Guide".
Core manual: "S7-300, CPU 31xC and CPU 31x: Installation" explains installation and debugging details; The "Technical Specifications for CPU 31xC and CPU 31x" provide detailed performance parameters.