Welcome to the Industrial Automation website!

NameDescriptionContent
HONG  KANG
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

OMRON SSS Software C-series PLC Operating Instructions

来源: | 作者:FAN | 发布时间 :2026-03-26 | 6 次浏览: | 🔊 Click to read aloud ❚❚ | Share:

OMRON Comprehensive Operation and Application Guide of SYSMAC Support Software (SSS) in C-series PLCs

In the field of industrial automation, the programming and debugging software of programmable logic controllers (PLCs) serves as a bridge between engineers and hardware systems. OMRON's SYSMAC Support Software (SSS) is such a powerful tool designed specifically for C-series PLCs. According to its official operating manual W248-E1-1A, SSS not only supports basic programming tasks, but also integrates a series of advanced functions such as system configuration, memory management, and network communication. This article aims to deeply interpret the core content of the manual, systematically explain the key technologies and practical methods of SSS in the operation of C-series PLC, and provide a professional and detailed technical reference for technical personnel.


Part 1: SSS Software Infrastructure and Operating Modes

1.1 Software positioning and applicable objects

SSS software runs on IBM PC/AT or compatible computers and is specifically designed for programming and maintaining SYSMAC C-series PLCs (such as C200H, C1000H, C500, etc.). The manual clearly states that the users of this software should have knowledge of electrical systems, usually the personnel responsible for installing, designing, and managing FA systems. The strength of SSS lies in its provision of a complete solution from project creation to system debugging.

1.2 Operation mode division: offline and online

The core operational logic of SSS revolves around two modes:

Offline operation: This is the main environment for program development, data structure design, I/O table configuration, and other work. Without connecting to the PLC, engineers can fully write, edit, and save ladder diagrams or mnemonic programs in SSS, and pre configure DM data areas, I/O tables, etc. All operation results are saved in the system workspace or disk of the computer.

Online operation: When physically connected to the PLC, SSS enters online mode. At this point, the software can perform program upload/download, real-time monitoring of PLC operating status, online editing and debugging, reading/writing data areas, etc. Online operation is a crucial step in verifying program functionality and diagnosing system issues.


Part 2: Offline Operations - The Foundation of Project Development

2.1 Programming Environment Configuration

Before starting any programming work, it is necessary to perform correct system settings, which is a prerequisite for ensuring compatibility between the program and the target PLC. The core settings include:

PC model selection: In the system settings menu, the target PLC model (such as C200H, C1000H, C500, etc.) must be clearly specified. The manual specifically states that changing the PC model may clear the programs and data in the current workspace, and caution should be exercised when operating.

Clear Memory: Before writing a new program, it is recommended to use the "Clear Memory" operation to ensure that the system workspace is clean. This operation will clear user programs, I/O comments, etc.

Display mode setting: SSS supports multiple program display modes to adapt to different programming habits. The main modes include:

UnaAnnotated ladder diagram: focuses on instruction logic and displays concisely.

Annotated ladder diagram: Display I/O annotations next to the ladder diagram for easy understanding.

Mnemonic (function key): Use function keys to input commands, suitable for quick programming.

Mnemonic (typing): Directly typing command mnemonics, in line with advanced user habits.

2.2 Practical application of ladder diagram programming

Ladder diagram is the most intuitive way in PLC programming. The ladder diagram editing function of SSS is very powerful, and its core lies in the concept of "instruction blocks".

Instruction block: An instruction block refers to a series of logical lines starting from the left bus and ending with the output instruction on the right. A single instruction block can contain up to 22 logical lines, which helps with on-screen management.

Programming: In "write mode", engineers can input various logical conditions (normally open/normally closed contacts, OR, AND) and output instructions (OUT, TIM, CNT, etc.) through function keys. For special instructions with function codes, they can be inputted through the FUN function.

Editing operations: SSS provides a variety of editing tools, including inserting/deleting rows and columns, drawing/deleting vertical and horizontal lines, and reversing the normally open/normally closed states of contacts. For example, the F8 key can connect horizontal lines, the F6 key can draw vertical lines, and/or the F9 key can quickly switch the logical state of contacts.

Annotation system: In order to improve the readability of the program, SSS supports three types of annotations:

I/O annotation: Directly attached to the input/output bit address, with a length of up to 16 characters.

Instruction annotation: attached to the output instruction on the right side to explain its function, with a length of up to 32 characters.

Block annotation: Used to add explanatory text between two instruction blocks, with a length of up to 60 characters.

Program storage: In ladder diagram mode, instruction blocks written or modified must be written to the system workspace through "store" or "insert store" operations. This is a crucial step in preventing modifications from being lost.

2.3 Mnemonic Programming Mode

For users who are accustomed to text programming or need to handle more complex logic, mnemonic patterns are a powerful complement to ladder diagrams. In mnemonic mode, the program is constructed by inputting mnemonic instructions and operands, and the program is written in real-time into the system workspace without the need for manual "storage" operations. This makes the editing efficiency of mnemonic mode very high.

2.4 Data Management: DM and I/O Tables

In addition to program logic, PLC projects also involve a large amount of data configuration.

Data Area (DM): DM (Data Storage) is a critical area for storing set values and calculation results. The DM menu of SSS provides functions for editing, copying, filling, and printing DM content. Users can view and modify DM data in hexadecimal or ASCII format. For advanced models such as C200HS, a portion of UM (User Memory) can also be allocated as an extended DM area.

I/O table: The I/O table is a list for PLC to identify its hardware configuration (such as input/output units, special units, remote I/O slave stations). The offline I/O table function allows engineers to pre configure system architecture without actual hardware. Through the I/O table menu, users can write, check, save, and print I/O tables, which provides great convenience for early project planning.

Part 3: Online Operation - System Debugging and Monitoring

3.1 Connection and Online Switching

After establishing a physical connection (via peripheral bus, Host Link, or SYSMAC NET), press Ctrl+O in SSS to enter online mode. The prerequisite for online operation is that the PC model and interface in the system settings must match the actual connection.

3.2 Monitoring and Debugging Functions

The core value of online mode lies in the monitoring and intervention of PLC during operation.

Status monitoring: The most basic online operation is to monitor the operational status of the ladder diagram. When online, the contacts on the ladder diagram will be highlighted (or changed) according to their actual on-off status, allowing engineers to visually see the execution results of the program. You can browse the entire program through the PageUp/PageDown keys.

Data monitoring: SSS provides a dedicated data monitoring area that can simultaneously monitor the status of up to 20 bits or words. Data can be displayed in hexadecimal, signed/unsigned decimal, binary, or ASCII format, greatly simplifying the data analysis process.

Forced operation: In order to simulate specific operating conditions or test program logic, SSS supports forced setting or resetting of bits in memory. The manual emphasizes the risk of this function and requires confirmation that it will not pose a danger to the controlled system before operation.

Differential monitoring: For models such as CQM1 and C200HS, SSS supports differential monitoring, which can accurately capture the instantaneous changes of a specific location from OFF to ON (rising edge) or ON to OFF (falling edge), and highlight them on the screen with a beep prompt, making it very suitable for capturing transient faults.

AI Search: This is a very intelligent debugging tool. When an output does not perform as expected, the AI search function can automatically analyze the program and move the cursor to the execution condition that is most likely to prevent the output from conducting, significantly improving the efficiency of troubleshooting.

3.3 Online Editing

Online editing is a highly valuable feature of SSS, allowing for minor modifications to the program without stopping the PLC operation. This is crucial for a production line that is currently in operation. Online editing supports modifying individual instruction blocks in MONITOR mode, and the modified program will be written to both the PC and computer workspaces simultaneously. But the manual also warns that online editing may prolong the scanning cycle and requires evaluation before modification.


Part Four: Advanced Features and Network Communication

4.1 Program and Data Processing

Global address change: When hardware configuration changes, it may be necessary to modify a large number of addresses in the program. The "Change Address" function of SSS can efficiently complete this task, supporting batch replacement of bit addresses, word addresses, and timer/counter numbers, and the option to modify corresponding I/O comments simultaneously.

EPROM processing: For situations where program solidification is required, SSS supports reading, writing, and verifying EPROM through PROM Writer. This function can convert programs in the system workspace into machine language and write them into the EPROM chip.

Program conversion: SSS supports program conversion between different platforms, such as converting C500 series programs to formats available in C2000H series.

4.2 SYSMAC NET and SYSMAC LINK Data Link

Industrial networks are an important component of modern automation systems. SSS provides powerful data link management capabilities for SYSMAC NET and SYSMAC LINK networks.

Data link table: Data link is the foundation for automatic data exchange between PLCs. SSS allows users to create and edit data link tables offline, defining the data area (such as LR area, DM area) and word count for each node's sending and receiving.

Routing table: In SYSMAC NET multi network systems, SSS needs to configure a routing table to communicate with PLCs on remote networks. The routing table specifies the bridge node addresses required to reach the target network. These configurations can be made in the system settings.

Online network operation: After online, the edited data link table can be transmitted to the PLC through SSS, which can start/stop the data link and monitor the operation status of the data link, such as communication cycle time, refresh cycle time, and error status of each node. This is crucial for the maintenance and diagnosis of network systems.

Part 5: System and File Management

5.1 System Setting Parameters

System settings are the cornerstone of the normal operation of SSS. In addition to the PC models and interfaces mentioned earlier, they also include:

I/O table UM transfer: determines whether the I/O table and/or data link table are also transferred to the user memory (UM) of the PLC during program transfer.

Printer settings: Specify the printer model for printing programs, data lists, etc.

Data disk drive: Specify the default file save path.

Output bit annotation type: Choose whether to display I/O annotations or instruction annotations for output instructions.

5.2 Document Management

SSS supports two file formats: DOS files and LSS files.

DOS file: This is the default format of SSS, with good compatibility, and can be operated using DOS commands.

LSS files: In order to be compatible with older LSS software, SSS also supports saving and reading data in LSS format. The file management menu provides directory display, file copying, renaming, deleting, and directory creation and deletion functions, allowing engineers to efficiently organize project files.


Part 6: Summary and Safety Precautions

6.1 Summary

OMRON SYSMAC Support Software (SSS) is a comprehensive and well-designed PLC development platform. It covers the entire process from project creation, programming, configuration, to on-site debugging, monitoring, and network maintenance through clear offline/online mode division. Its ladder diagram and mnemonic dual track programming mode meet the preferences of different engineers, and powerful online editing and intelligent debugging functions (such as AI search) greatly improve on-site work efficiency. For complex network systems, SSS also provides complete configuration and monitoring tools to ensure efficient and reliable operation of the system.

6.2 Safety precautions

The manual repeatedly emphasizes the importance of safety at the beginning and throughout the entire text, and any operation must follow the following principles:

Personnel safety: It is strictly prohibited to disassemble the unit or touch the terminals when powered on to prevent electric shock.

Environmental safety: Avoid use in environments with extreme temperatures, humidity, corrosive gases, or strong vibrations.

System safety: Before modifying programs, forcing set/reset, or changing PLC operating modes, it is necessary to confirm that these operations will not pose a danger to controlled equipment or personnel. The manual clearly states that failure to comply with these warnings may result in serious personal injury or even death.

Data Security: Before switching display modes or performing critical operations, it is essential to perform a 'store' operation to prevent data loss.

In summary, mastering SSS software is the key to efficiently applying OMRON C-series PLCs. It is not only a programming tool, but also an integrated engineering management platform that provides solid technical support for the entire lifecycle of automation systems.

  • GE IM 3100 D 1007722 Control Module
  • GE IM0146B Industrial Circuit Board
  • GE IM0059E0-10070 Interface Board
  • GE IM0094C Industrial Control Board
  • GE IC200PNS002-AB VersaMax PROFINET Scanner
  • GE F650BFBF1G0HI Feeder Protection Relay
  • GE TPR5616NRHC Protection Relay
  • GE D6P3KH Digital Protection Relay
  • GE F650BABF2G0HIS Feeder Protection Relay
  • GE F650BADF2G1HIR Feeder Protection Relay
  • GE F650BABF2G1HI6 Digital Bay Controller
  • GE Multilin 745-W2-P1-G1-H-I-A-R-E Transformer Protection Relay
  • GE 100BASE-T Industrial Ethernet Interface
  • GE Multilin 350-E-P1-S1-H-S-E-C-N-2E-D-H Feeder Protection System
  • GE F650MXCF1G1HI6 Bay Controller
  • GE MM300-GEHD2CAB Motor Management Relay
  • GE MMS35-621-1-00 Motor Management System
  • GE 100BASE-T Ethernet Communication Module
  • GE F650MFCF1G1HI6 Feeder Protection Relay
  • GE CK13BA300 Control Module
  • GE W2-P1-G1-H Industrial Control Unit
  • GE PIB315B Power Interface Board
  • GE 343L695VAGIRHC Multi-Function Relay
  • GE Multilin B90N05HKHF8NH6 Bus Differential Protection
  • GE ZX3SC0204N-930 Intelligent Control Module
  • GE PIB504 Process Interface Board
  • GE D20MX Remote Terminal Unit
  • GE T60UJ3HKHF8NH6 Transformer Protection Relay
  • GE ZG3SA02041-58S600X Motor Protection Relay
  • GE ZG3SA02041-58S Motor Protection Relay
  • ABB DSDX 452 L Remote Input Output Module
  • ABB RDCU-02C Drive Control Unit
  • ABB COMMANDER 350 Process Controller
  • ABB Tmax XT4S 250 Molded Case Circuit Breaker
  • DEIF MALLING 8027.90 Industrial Control Unit
  • DEIF DCP2-2410 Power Supply Module
  • DEIF FAS-2N Synchronizer
  • DEIF MALLING 827.54 Processor Module
  • DEIF DU-2/MKIII Display Unit
  • DEIF DRW-2 Reverse Power Relay
  • DEIF 827.4 Power Management Module
  • DEIF 1044220060F Mains Measurement Module
  • DEIF 1044220190G Remote Display Module
  • DEIF 1044220140C AGC 200 Display Module
  • DEIF BRW-1-NB Remote Display Unit
  • DEIF MALLING 827.52 Industrial Control Unit for Automation Systems
  • DEIF BRW-2 Industrial Relay Module for Control Systems
  • DEIF 1044220080D Power System Control Module Industrial Automation
  • DEIF 1044220100F Controller Module for Generator Control Systems
  • DEIF DU-300 Voltage Monitoring Relay Industrial Protection Unit
  • DEIF 1044220060F I/O Extension Module
  • DEIF 1044220150C Interface Module
  • DEIF GCU 100 Engine Control Unit
  • DEIF XDI144-DUAL Marine Indicator
  • DEIF 827.41 Multi-line 2 Processor Module
  • DEIF AGC 146 Automatic Genset Controller
  • DEIF 1044220080E MDR-2 Display Module
  • DEIF MDR-2 Multifunctional Digital Relay
  • DEIF 1044220070E PPU-3 Display Module
  • DEIF PPU-3 Paralleling and Protection Unit
  • Siemens 6SL3210-1SE21-8UA0 PM340 Power Module SINAMICS Drive System
  • Yaskawa JANCD-XCP01C-1 Servo Control Board with JANCD-XIF04-1 Network Interface
  • BRISTOL 396879-01-2 C Wave Micro PLC CPU with Ethernet Industrial Controller
  • OMRON SGDH-10DE-OY Servo Drive High Precision Industrial Motion Control Amplifier
  • OMRON FQM1-MMA22 PLC High Performance Motion Controller Module
  • Schneider PowerLogic P5F30 Protection Relay
  • ABB DSPC53 57310256BA/2 Processor PCB
  • ABB Jokab 2TLJ020070R1700 Eden Safety Sensor
  • Lenze HMI EL 105C 3351-1 2 Control Panel
  • Pilz PSEN op4-s-30-060/1 Safety Light Curtain Specs
  • Vacon NXI01055A2T0CSSA1A3AK00C6 AC Drive
  • Square D PowerLogic CM4250 Circuit Monitor
  • Siemens CPU314C-2PTP Simatic S7-300 PLC
  • Eaton E84BAN Communication Interface Module
  • Prosoft MVI56 PDP-MV1 Profibus Master Module
  • Kongsberg MEI 8100276 Multi I/O Interface Module Marine Control System
  • Kongsberg MD 22 TN Display Module Marine Control Display Unit
  • Kongsberg MSI 8100222 Multi Signal Interface Module Marine Control System
  • Kongsberg RDO-16 8100155 Digital Output Module Marine Control System
  • Kongsberg RAO-8 8100153 Analog Output Module Marine Control System
  • Kongsberg C2 8100182 Controller Module
  • Kongsberg dPSC 8100183 Digital Process Controller
  • Kongsberg SPBUS-HUB 600309 Process Bus Hub
  • Kongsberg Simrad BP413R 37960580 A PCB Card
  • Kongsberg RAi-10tc 8100161 Remote Analog Input
  • Kongsberg NL-290 KM-F Navigation Light Panel
  • Kongsberg RAI-16xe Remote Analog Input Module
  • Kongsberg dPSC 8100183 Dynamic Positioning Control Panel
  • Kongsberg NK-210 NU02 Control Panel
  • Kongsberg RAIC400 Remote Analog I/O Controller
  • Kongsberg Simrad SJS-01/02 Sonar Sensor Marine Detection System
  • Kongsberg RAo-8 Analog Output Module Marine Automation Control Module
  • Kongsberg MP 530 Operator Panel Unit Marine Control Interface System
  • Kongsberg PSO-P 8100334 Power Supply Unit Marine Automation Power Module
  • Kongsberg dPSC 8100183 Dynamic Positioning Controller Marine Control System
  • Kongsberg MP 8200 Processor Module
  • Kongsberg MP 8300 Multi Processor Board
  • Kongsberg MCU8625 Marine Control Unit
  • Kongsberg MP 5810 Multi Processor Board
  • Kongsberg DSU 001 Dual Slot Unit
  • Kongsberg RCU 510 Remote Control Unit
  • Kongsberg BS610 Battery Supply Unit
  • Kongsberg M410-10 Alarm Monitoring Panel
  • Kongsberg HMS 100 Hull Monitoring System
  • Honeywell TCF901 Gas Detector
  • Honeywell 9938R Relay Output Module Industrial Control Switching Module
  • Honeywell XL1000C1000 Building Automation Controller HVAC Control System
  • Honeywell S0762970 I/O Interface Module Industrial Automation Signal Module
  • Honeywell RM7850 Burner Control Module Industrial Flame Safeguard Controller
  • Honeywell IPC1100 Industrial Panel Computer Automation Control HMI System
  • Honeywell TDID72 Digital Input Module
  • Honeywell TCNT01 Control Processor Interface
  • Honeywell C300 Controller Process Automation
  • Honeywell 51304337-250 Redundancy Cable Assembly
  • Honeywell PAL 2053 Programmable Array Logic Board
  • Honeywell IOC2053 Input Output Card
  • Honeywell PAIH03 Analog Input Module
  • Honeywell IPC 621 Industrial Computer
  • Honeywell 05701-A-0301 Process Control Card
  • Honeywell 10302/2/1 Power Supply Module
  • Honeywell SPXCDALMTX4 Gas Detector Module Industrial Safety Monitoring Device
  • Honeywell PHAI01 Analog Input Module Industrial Automation Input Module
  • Honeywell 63AP3070 Pressure Transmitter Industrial Measurement Module
  • Honeywell P522AC Analog Controller Module Industrial Control System Component
  • Honeywell K2LCN-4 ControlNet Interface Module Industrial Communication Module
  • Honeywell M6184D1035 Proportioning Actuator
  • Honeywell PCF901 Pulse Control Interface Module
  • Honeywell 05701-A-0302 Gas Detection Control Card