+086-15305925923

K-WANG

Service expert in industrial control field!
NameDescriptionContent
Adequate Inventory, Timely Service
pursuit of excellence 
Ship control system
Equipment control system
Power monitoring system
Current position:
新闻动态
newS
   
Brand

SIEMENS SIMATIC S5 series PLC STEP 5 programming software

From: | Author:Wang | Time :2025-11-25 | 200 visit: | Share:



SIEMENS SIMATIC S5 series PLC STEP 5 programming software

Software Overview and Adaptation Scope

Basic Information

Software name: STEP 5 (full name SIMATIC Step 5 Programming Software), is a specialized programming tool developed by Siemens for the S5 series PLC. It was first released in the 1980s and later adapted to more S5 PLC models through version updates;

Version division: The main versions include STEP 5 V6.0 (supporting MS-DOS) and STEP 5 V7.2 (compatible with Windows XP), with the same functionality across different versions, except for differences in the operating environment;

Core value: As the "exclusive development platform" for S5 series PLCs, it provides full process support from program writing, parameter configuration to fault diagnosis, and is a key tool for the stable operation of traditional S5 systems.

Adapt PLC models and hardware requirements

Specific communication interface requirements for adapting PLC series models, software operation, hardware requirements (Windows XP)

S5-90U S5-90U CPU 928/929 MPI (requires MPI adapter 6ES7 972-0CA22-0XA0) Processor ≥ 1GHz, memory ≥ 512MB, hard disk ≥ 100MB

S5-100U S5-100U CPU 941/942 MPI/Profibus DP Same as above

S5-115U S5-115U CPU 943/944/945 MPI/Profibus DP Same as above

S5-135U S5-135U CPU 947/948 MPI/Profibus DP processor ≥ 1.5GHz, memory ≥ 1GB, hard disk ≥ 200MB

S5-155U S5-155U CPU 951/952/953 MPI/Profibus DP Same as above


Core functions and operations

1. Program creation function

Programming language support: Provides three industrial standard programming languages to meet different user habits:

Core advantages of programming language representation, applicable scenarios

STL (Statement Table) text instructions (such as A, O,=) have concise code and high execution efficiency, making them suitable for engineers with programming experience in complex logic

LAD (ladder diagram) graphical symbols (contacts, coils) are intuitive and easy to understand, close to electrical schematics, electrical engineers, and on-site maintenance personnel

FBD (Function Block Diagram) graphical function blocks (such as TIM, CTR) are suitable for modular programming and support complex process control scenarios such as PID

Program structure design: Adopting a "block structure" to organize the program, each block functions independently and can be called upon by each other, improving code readability and reusability:

Block type, core function, typical usage, quantity limit

OB (Organizational Block) program entrance, controlling the sequence of program execution (such as main loop, interrupt) OB1: Main loop block (continuous execution after PLC power on); OB2-OB15: Up to 16 interrupt blocks (such as timed interrupts and fault interrupts) (OB1-OB16)

FB (Function Block) user-defined logic module, can encapsulate duplicate logic (such as motor start stop control, counting logic) with parameters and background data blocks, up to 256 (FB0-FB255)

SB (System Block) Siemens preset functional modules, providing PID control (SB35), high-speed counting (SB40) and other functions depending on the PLC model (such as S5-115U supporting 32) without the need for users to write code

DB (Data Block) stores variable data and provides data support for FB/OB. Shared DB: Multiple blocks share data; Background DB: Only corresponds to FB with a maximum of 256 (DB0-DB255)

2. Online monitoring and debugging

Communication connection: Supports two mainstream communication methods to achieve bidirectional data exchange between software and PLC:

MPI (Multipoint Interface): Connected through MPI cables (such as 6ES7 972-0CA22-0XA0), with a maximum communication distance of 50 meters and up to 32 devices connected;

Profibus DP: Connected through a Profibus DP card (such as 6ES5 465-7LA11), with a maximum communication speed of 12Mbps, suitable for long-distance (1200 meters) communication.

Real time monitoring function:

I/O status monitoring: Real time display of the on/off status of input (I) and output (Q) on the LAD/STL/FBD interface (red=connected, gray=disconnected);

Internal variable monitoring: View the current values of flag (F), timer (T), and counter (C) (such as the remaining time of T3 and the count value of C5);

Program execution tracking: Through the "single step execution" and "breakpoint setting" functions, verify the program logic line by line and locate erroneous statements.

Online modification: Supports modifying non critical blocks (such as FB and DB) while the PLC is in RUN mode without stopping, ensuring production continuity; But the modification of OB1 (main loop block) requires switching to STOP mode.

3. Parameter configuration and fault diagnosis

System parameter configuration: Configure PLC hardware and system parameters through the "Hardware Configuration" function:

Parameter category configuration content Key parameter examples

Hardware parameter I/O module address allocation, expansion module recognition, input module EM DI08 address set to I10.0-I10.7

Interrupt parameter interrupt priority (levels 1-15, with level 1 being the highest), interrupt trigger condition OB3 timed interrupt set to 100ms trigger, priority level 5

Timer/Counter Timer type (power on delay/power off delay), counter type (up/down count) T0 is set as power on delay type, C0 is set as up count type

Fault diagnosis function:

Diagnostic buffer: Automatically records two types of fault information, supporting users to quickly locate problems:

Program failure: syntax errors (such as address out of bounds), logical errors (such as dead loops);

Hardware failure: missing I/O module, communication interruption, power failure;

Status indicator light: The software interface displays real-time PLC running mode (RUN/STOP), communication status (green=normal, red=interrupted), and fault status (yellow=warning, red=serious fault).

Programming specifications and address ranges

1. Address allocation rules

The address of S5 series PLC adopts the "byte bit" format (such as I0.0), and the address range of each type is fixed, which must be strictly followed:

Address Type Address Range Bit Usage Description

Input (I) I0.0-I127.7 1024 bit to receive signals from external sensors, buttons, etc

Output (Q) Q0.0-Q127.7 1024 bit control external relays, indicator lights, motors, etc

Flag bits (F) F0.0-F127.7 1024 bits store program intermediate variables and logical states

Timer (T) T0-T255 256 to achieve delay control (such as T3 delay of 10s)

Counter (C) C0-C255 256 implements counting function (such as triggering action when C5 count value reaches 100)

Data block (DB) DB0. DBX0.0- DB255. DBX127.7 stores numerical data (such as temperature and pressure) with 32768 bits

2. Grammar Standards (Taking Common Languages as Examples)

STL (Statement Table): Combination of instructions and addresses, executed on a row by row basis, with one instruction per row:

Basic logic instructions: A I0.0 (normally open contact closed), O I0.1 (normally closed contact closed),=Q0.0 (output coil energized);

Timer instructions: L K5 (load delay value of 5s), T T3 (write value to timer T3), A T3 (delay timer T3 until the rear contact closes);

Counter instructions: L K10 (load count value 10), C C5 (write value to counter C5), A C5 (close contacts when counter C5 is full).

LAD (ladder diagram): Following the logic of "left power supply → contacts → coil → right power supply", the contacts and coils are arranged graphically:

Normally open contact: The symbol is "┌-------", corresponding to STL instruction A;

Normally closed contact: symbol "┌ -/-", corresponding to STL instruction AN;

Output coil: symbol "-- () --", corresponding to STL command=.


Operation process and application scenarios

1. Complete operation process

Preliminary preparation:

Install STEP 5 software (Windows XP needs to run in "compatibility mode");

Connect the PLC to the computer (one end of the MPI cable is connected to the PLC's MPI port, and the other end is connected to the computer serial port/USB-MPI adapter);

Start the software and confirm the PLC model (such as S5-115U CPU 943) through the "PLC → Identify" function to ensure that the software is compatible with the hardware.

Program development:

New Project: "File → New Project", name the project (such as "Production Line Control"), select the PLC model;

Create block: "Block → Create", sequentially create OB1 (main loop block), FB1 (motor control block), DB1 (background data block);

Write command: call FB1 (CALL FB1, DB1) in OB1, and write motor start stop logic in FB1 (such as I0.0 start, I0.1 stop, Q0.0 control motor);

Grammar Check: "Edit → Syntax Check" to fix syntax errors (such as address errors and missing instructions).

Online debugging:

Download program: "PLC → Load Block", select the block to be downloaded (OB1/FB1/DB1), confirm and download to PLC;

Switching mode: Switch the PLC from STOP mode to RUN mode, and the software interface displays a green "RUN" indicator light;

Monitoring and modification: Check the on/off status of I0.0/I0.1 on the LAD interface, use the "Modify" function to modify parameters in DB1 (such as motor running time), and verify whether the program logic is correct.

Maintenance management:

Program backup: "PLC → Save Block", upload the program in the PLC to the computer and save it as a ". S5D" format file;

Troubleshooting: Check "Diagnosis → Buffer", locate the problem based on the fault code (such as "E01: Address Out of Range"), modify the program or replace the hardware;

Program optimization: Adjust the logic according to on-site requirements (such as adding fault alarm function), re download and test.

2. Typical application scenarios

Traditional production line control: Based on S5-115U PLC and STEP 5, write production line logic programs (such as material conveying and assembly process control), and adjust production parameters (such as conveying speed) in real time through online monitoring;

Industrial machine tool control: On the S5-135U PLC, use STEP 5 to write machine tool processing logic (such as spindle start stop, tool switching), use FB blocks to package different processing processes, and improve program reusability;

Process control: For the chemical reaction kettle control system of S5-155U PLC, SB35 (PID control block) is called through STEP 5 to configure temperature/pressure control parameters and achieve high-precision process adjustment.


  • ABB PFEA113-20 Tension Measurement Module
  • ABB GDD471A001 Drive Control Board
  • ABB UCD224A103 Control Unit Module
  • ABB PDD205A1121 Power Drive Control Module
  • ABB DSPC454 Processor Module
  • ABB 81EU01E-E Excitation Control Module
  • ABB TK457V050 Control Cable Assembly
  • ABB DSRF197K01 I/O Interface Module
  • ABB TK802F Communication Cable Assembly
  • ABB 3BHE039203R0101 Control Interface Module
  • ABB 3BHB004027R0101 Power Control Board
  • ABB 3BHB003154R0101 Power Control Board
  • ABB PM864AK01-eA AC 800M Processor Unit
  • ABB CI868K01-eA Communication Interface Module
  • ABB 5SHY35L4520 IGCT Power Semiconductor Module
  • ABB UNS0119A-P V101 Control Interface Module
  • ABB GCC960C103 Control Communication Board
  • ABB GVC736CE101 Voltage Control Module
  • ABB PCD244A101 Control Processor Module
  • ABB GFD212A Ground Fault Detection Module
  • ABB PPD513 A2A‑11165 Industrial Automation Controller
  • ABB PDD200A101 Digital Processing Device
  • ABB SPIET800 Industrial Automation Interface Module
  • ABB SPAD346C3 Protection and Automation Device
  • ABB FPX86-9329--C Power Interface Board
  • ABB ARCOL0339 Precision Power Resistor
  • ABB 5SDF0860H0003 Phase Control Thyristor Module
  • ABB KUC720AE01 Drive Control Module
  • ABB UFC718AE01 Control Interface Unit
  • ABB 5SHX2645L0004 IGCT Power Semiconductor Module
  • ABB SPHSS03 High-Speed Signal Processing Module
  • ABB CB801 Communication Backbone Module
  • ABB DSAI130D Analog Input Module
  • ABB 086345-504 Industrial Interface Control Module
  • ABB PFCL201C 10KN Tension Measurement Module
  • ABB 3HAC17484-8108 Industrial Control Module
  • ABB 5SHY3545L0009 IGCT Power Semiconductor Module
  • ABB NPCT-01C Control Processing Module
  • ABB 216AB61 Industrial Control Module for Automation Systems
  • ABB 5SHX1060H0003 High Power Thyristor Module for Industrial Power Control
  • ABB 07KT97H3 PLC Central Processing Unit for Industrial Automation
  • ABB 3BHB005171R0101 Power Semiconductor Module for Industrial Power Systems
  • KEBA E-SP-CCEC/A/22 - Keyboard Panel
  • KEBA ERHL33 - Module
  • KEBA K-FTC-AN/B - Control Panel Board
  • KEBA DO321 1914D-0 - Digital Output Module
  • KEBA T70Q - Teach Pendant
  • KEBA BL272/A / BL272/B - Bus Coupling Module
  • KEBA T70R - Teach Pendant
  • KEBA PRONET-E-20A-K - Servo Drive
  • KEBA T55-RA0-AU0-LK - Mobile HMI KeTop
  • KEBA DO-272/A - Digital Output Module
  • KEBA PS240/A - Power Supply Module
  • KEBA 2134-00393 - Module Code
  • KEBA E-10-ANALOG-SU - Analog Card
  • KEBA 1904D-0 / D1458E - E-10 Analog Card
  • KEBA FM265A - Function Module
  • KEBA CR17910086 - Controller Board
  • KEBA C5G-TP5WC2 - Robot Teach Pendant
  • KEBA PD242A - Power Supply Module
  • KEBA DI-325 - Digital Input Card
  • KEBA C2-TM-240/A - Digital Input Module
  • KEBA D1547C - I/O Bus Coupling Board
  • KEBA CR-092 - Interface Module
  • KEBA 3HAC023195-003 - IRC5 Teach Pendant Cable
  • KEBA KETOP-T150-MA0 - Mobile HMI
  • KEBA KC-P30-EC24011 - Control Module
  • KEBA 1770B-1 - E-8-THERMO Card
  • KEBA T20T-T00-AR0-CE6 - KeTop Terminal
  • KEBA D1633C-1 - CPU Card
  • KEBA HT401-232-8/0 - Teach Pendant
  • KEBA AO-570 - Analog Output Module
  • KEBA T10-mAb-DMV - Handheld Terminal
  • KEBA C70-rqa-AK0-Le - KeTop Teach Pendant
  • KEBA 1918F-0 - Digital Output Board
  • KEBA T10-mAa-DMV - Handheld Terminal
  • KEBA HT2-SCHLUSSELS - Key Switch for HT2
  • KEBA T100-003-CES - HMI Terminal
  • KEBA GVME610IO - I/O Module
  • KEBA HT501-231 - Teach Pendant
  • KEBA E-CG-CONTROL - Graphic Control Card
  • KEBA D1420F - F-SIC-1 Circuit Board
  • KEBA E-ANA-SUB2 - Analog Sub-module
  • KEBA HT401-222-4 - Teach Pendant
  • KEBA II030 - Input Module
  • KEBA T155-M10-AN0-W - KeTop Mobile HMI
  • KEBA CP088-B - Processor Module
  • KEBA HT40123280 - Operating Terminal
  • KEBA HT4222 - Handheld Terminal
  • KEBA H24025369 - Replacement Part
  • KEBA H24024891 - Replacement Part
  • KEBA SR161 - Analog Input Card
  • KEBA 1762A - E-CRT/EL Circuit Board
  • KEBA T50-011-CES-CE5 - Operator Terminal
  • KEBA E-CON-ELD/B/15 - Control Panel
  • KEBA E-8-THERMO - Thermocouple Card
  • KEBA 330/A-1211-20 - Axis Module
  • KEBA T55-maw-AU0-CE6 - Mobile HMI
  • KEBA C150-110-AK0-N - KeTop HMI
  • KEBA HT4-20656 / HT4-221 - Handheld Terminal
  • KEBA 18658-1 - Analog Board
  • KEBA LM64P89 - LCD Display Screen
  • KEBA E-CPU-88-A - CPU Board
  • KEBA D-CE/59718/15 - Control Board
  • KEBA KC-P30-ES2400E2-E00 - Control Module
  • KEBA 3HAC12929-1 - Teach Pendant SX TPU
  • KEBA E-CON-CC100/A - Control Panel Engel
  • KEBA T200-M01-P20-WES7 - Panel PC Windows Embedded
  • KEBA KC-P30-ES2400B2-M0R - KeControl C3 Module
  • KEBA E8ANALOGC - Analog Card
  • KEBA E-CPU-88-B - CPU Board
  • KEBA T55-raw-AU0-CE6 - Mobile HMI
  • KEBA D1633C - CPU Board
  • KEBA T55-MAW-Au0-CE6 - Mobile HMI
  • KEBA 3HAC11266-4 - Teach Pendant Cable
  • KEBA T20e-m00-Br0-C - Handheld Terminal
  • KEBA E-3-ACU-INC - Controller Board
  • KEBA E-PS-24V - Power Supply Module 24V
  • KEBA C55-2aw-1U0-R - Control Unit
  • KEBA T70-qqu-Aa0-LK - KeTop Teach Pendant
  • KEBA PS244 - Power Supply Module
  • KEBA ECPU186B - CPU Circuit Board
  • KEBA E-8-ANALOG/C - Analog Input Card Engel
  • KEBA AT-4041 - KeControl C3 Controller
  • KEBA T50-ADP - Adapter Module
  • KEBA CP088/D - Control Processor Module
  • KEBA CU312 - Central Unit Module
  • KEBA K2-400 SC440/A - Communication Module