+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 | 116 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.


  • HIMA 895210001 PLC Module | Industrial Safety Control and Processing Module
  • HIMA 157528-0 PLC Module | Industrial Safety Control and Processing Module
  • HIMA B5322 PLC Module | Industrial Safety Control and Processing Module
  • HIMA BV7032 PLC Module | Industrial Safety Control and Processing Module
  • HIMA F3300 PLC Module | Industrial Safety Control and Processing Module
  • HIMA F7105A PLC Module | Industrial Safety Control and Processing Module
  • HIMA F7150 PLC Module | Industrial Safety Control and Processing Module
  • HIMA F7508 PLC Module | Industrial Safety Control Processing Module
  • HIMA F8627 984862765 PLC Module | Industrial Safety Control Module
  • HIMA M3410 PLC Module | Industrial Safety Control Processing Module
  • HIMA Z7308 PLC Module | Safety Control System Processing Module
  • F8640 HIMA Central Module | Safety System Core Controller
  • HIMA F8630 Module | Safety System Functional Module
  • F8651X HIMA Central Module | Safety System Core Controller
  • F3236 Digital Input Module | HIMA Safety System Input Interface
  • F7131 HIMA Power Monitoring Module | Safety System Power Supervision
  • F8627X HIMA Communication Module | Safety System Network Interface
  • HIMA F8560X PLC Module | Safety-Related Control System Component
  • HIMA P8403 PLC Module – Industrial Safety Control Processor
  • HIMA F8628X Communication Module – Industrial Safety System Interface
  • HIMA F8621A Communication Module – Safety System Communication Interface
  • HIMA 984865066 PLC Module – Safety Control Processing Unit
  • HIMA F60CPU01 PLC Module – Safety Control Processing Unit
  • HIMA F8650E PLC Module – Safety Control Processing Unit
  • HIMA F8652E Central Module – Safety Control Processing Unit
  • HIMA F8650X Card – Safety Central Processing Module
  • F8652X HIMA Central Module – Safety Control Central Processing Unit
  • HIMA 99-7105233 B5233-1 Safety Module – Industrial Safety Control Component
  • KEBA KeTop T70-rqa-AK0-LK Teaching Device – Industrial Robot Teach Pendant
  • KEBA KETOP T50-T41-CPU 2495D-0 – Industrial CPU Module
  • KEBA E-CON-CC100/A/ 22178 – Industrial Controller Module
  • KEBA Kemro K2-200 CP 250/X 71580 CPU-MODULE – Industrial Control CPU Module
  • KEBA D3‑DA 330/A‑1211‑00 Drive – KeDrive D3 Axis Controller Industrial Servo Drive
  • KEBA KETOP O70‑bra‑A0a‑F Demonstrator – Industrial Automation Control Module
  • KEBA KETOP O70-BRA-A0A-F Demonstrator | Industrial HMI Operating Terminal
  • KEBA SO84.012.0083.0101.2 Servo Drive | Industrial Motion Control Solution
  • HIMA X-AO1601 Termination Boards
  • HIMA X-AI3251 Digital Output Module
  • HIMA X-DO3251 Digital Output Module
  • HIMA X-DI3202 Termination Board
  • HIMA X-DI6451 Digital Input Module
  • XYCOM 96574-001 - Circuit Board Card Rev A
  • XYCOM 99212A-001 - Control Board Card CPX-7
  • XYCOM 99222-001 - Circuit Board Card Rev A
  • XYCOM 97780-002 - Circuit Board for Operator Panel Screen
  • XYCOM XVME-164/1 - Circuit Board 61116
  • XYCOM CMX-7D - Power Supply Circuit Board PN99865-001
  • XYCOM 10330-00800 - Digital I/O Board Circuit Card
  • XYCOM 8450-HU - Husky Monitor 98916-001
  • XYCOM XVME-428/2 - IASCM Communication Board
  • XYCOM 3512KPT - Industrial PC Operator Interface
  • XYCOM Checkpoint Cognex - Inspection Machine Vision Camera
  • XYCOM XVME-080 - IPROTO Intelligent Prototyping Module
  • XYCOM IV-1653 - Ironics VMEbus CRT Circuit Board
  • XYCOM M032000220 - Control Board
  • XYCOM 4850A - Operator Interface Panel 91855-001
  • XYCOM 9462 - HMI Operator Interface Panel 9462-016214001
  • XYCOM 9465 KPM - Monitor Industrial PC 9465-219114103
  • XYCOM 9486 - Monitor-Miniflex Portrait 9486-0343
  • XYCOM MVME-490/1 - Circuit Board Tegal 6550 Etcher
  • XYCOM 1300 - Node Module 1300-000100000
  • XYCOM 3510 T - Operator Interface
  • XYCOM 3512 KPM - Operator Interface Part No 3512-A1F114103
  • XYCOM 4615KPM - Operator Interface
  • XYCOM 8320 - Operator Interface Display Panel 94321-002
  • XYCOM 4105 - Operator Interface P/N 91904-001
  • XYCOM PM101683E - Operator Interface PM101683 E
  • XYCOM 301993 - Operator Panel 89086-501 Raycon
  • XYCOM 2000 - Operator Panel 97957-001
  • XYCOM 9410KP - Operator Touchscreen HMI 51338-STN
  • XYCOM 9987 - Operator Workstation CPU Board
  • XYCOM 94144-002 - CPU Board Rev V
  • XYCOM 9487 - Programmable Interface HMI Panel PC
  • XYCOM 70956-411 - PLC Module Card Ethernet Card MESA 4I29X
  • XYCOM PM101587 - Operator Panel
  • XYCOM XT1502-BB-RB - Display Panel XT 1502
  • XYCOM PM3510 - Operator Interface Terminal
  • XYCOM PM8450 - Operator Interface Repair Evaluation
  • XYCOM PM8480 - Operator Interface PM101269
  • XYCOM 8000-SKM - Power Supply Board Module
  • XYCOM 510084 - Power Supply Board
  • XYCOM 1546 - Proface Industrial Workstation 1546-102031013
  • XYCOM 86864-002-E - Processor Board Module
  • XYCOM 3112T - Pro-face Operator Interface
  • XYCOM 3712 KPM - Pro-face Operator Panel
  • XYCOM 4615KPMT - Proface Industrial PC Display Panel PM-070007
  • XYCOM 5015T - Pro-Face Touch Monitor 100-240 VAC
  • XYCOM 5015T/R2 - Industrial Flat Panel Touch Monitor 5015R2-0100000
  • XYCOM 1341 - Proface Embedded Computer TF-AEC-6920-C2
  • XYCOM GLC150-BG41-DN - Graphic Logic Controller M-24V
  • XYCOM GP2301H-SC41-24V - Pro-face Operator Interface 5.7" w/ Cable
  • XYCOM 1547 - Pro-face Industrial PC Model 1547-00113101
  • XYCOM ST401-AG41-24V - Graphic Touchscreen Operator Interface
  • XYCOM 3310T - Pro-face Operator Panel 3310-001101001
  • XYCOM 5015 KPMT - Proface Operator Panel Display
  • XYCOM XVME-684 - PC Module VME Bus Processor 70684-201
  • XYCOM 3300 MT - Screen Monitor Display
  • XYCOM SXT1811T - Touch Panel Monitor 100/240VAC
  • XYCOM XT-1502 - Touch Screen Monitor Flat Panel Display Interface
  • XYCOM SXT1811 - Viewtronix SXGA Flat Panel Monitor 18.1" Display
  • XYCOM VT1040T - ViewTronix Touch Screen Monitor
  • XYCOM WS2786291 - Industrial Workstation PC
  • XYCOM XCME-540 - Analog I/O Module VMEbus 70540-001
  • XYCOM XVME-682 - CPU PCB Processor Module 70682-101
  • XYCOM CU040103500 - VME Rack System Module 4200401
  • XYCOM XVME-085 - Proto VMEbus Non-Intelligent Prototyping Module
  • XYCOM XVME-100 - PCB Controller Card ROM Board 70100-001
  • XYCOM XVME-103 - VMEbus Board 10103-001
  • XYCOM XVME-110 - VMEbus Memory Module SRAM 70110-001
  • XYCOM XVME-200 - Digital Universal Instruments I/O Module Card
  • XYCOM XVME-201 - Digital I/O Controller PC Board Card 70201-001
  • XYCOM XVME-202 - VMEbus Control Module 70202-001
  • XYCOM XVME-203 - VME Digital Counter I/O Module Board Card PLC
  • XYCOM XVME-203/293 - VMEbus Counter Module w/ Quadrature
  • XYCOM XVME-212 - 32 Channel Digital Input Programmable Scanner Module
  • XYCOM XVME-220 - 32 Point Programmable Scanner Digital Output Module
  • XYCOM XVME-230 - Intelligent Counter Module Bus Board VMS 70230-001
  • XYCOM XVME-240 - Digital I/O Card VMEbus I/O PCB
  • XYCOM XVME-244 - 64-Channel Isolated Digital I/O Module VMEbus Adept
  • XYCOM XVME-301 - Graphics Controller Module 74301-001A
  • XYCOM XVME-400 - Digital I/O Card VME Module 70400-001
  • XYCOM XVME-401 - VMEbus Circuit Board 70401-001
  • XYCOM XVME-404 - VME Disc Drive Controller Module Board Card PLC
  • XYCOM XVME-428/1 - VME Bus Intelligent Asynchronous Serial Communication Module
  • XYCOM XVME-490/1 - VMEbus Card 71490A
  • XYCOM XVME-491 - VMEbus Module 71491A
  • XYCOM XVME-500 - XVME-500/01 Card 70500-001
  • XYCOM XVME-500/1 - VMEbus Card I/O Module