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 | 307 次浏览: | 🔊 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.

  • ABB 3BUS208720-001 Industrial Power Signal Interconnection Module
  • TMEIC KPAD-3122A LCD Display Keypad
  • Siemens 6SN1145-1BA02-0CA1 PLC
  • LAM 2004365 TURBO BYPASS PLC ASM
  • Omron CJ1W-CORT21 PLC Module
  • Euchner MGB-L2B-PNA-L-121853 Safety Switch
  • XPSMC32ZP Safety Controller
  • Schneider 9070T3000D33 PLC
  • Omron C200H-MAD01 AD DA Module
  • Omron NJ501-1320 CPU Controller
  • Honeywell C36TR1UA1000 Thermostat
  • Honeywell TC-RPDXX1 Power Supply Module
  • Fuji NW0E32-3 PLC Programmable Controller
  • ASM 2004219 Turbo Bypass ASM 107864 Module
  • Future IHDW-BLA4S-IM CNC MPG Handwheel
  • Wieland R1.180.0080.0 SA-OR-S1-4RK-A Safety Module
  • Reliance Electric 57C493 AutoMax Power Supply 376W
  • Siemens 3VT8563-2AA03-2KA2 MCCB 3VT8
  • B&R X20IF1072 CAN Bus Interface Module
  • Mitsubishi OSE253S2 Rotary Encoder
  • Mitsubishi NV630-SW 4P 500A Earth Leakage Breaker
  • Euchner MGB-L1B-PNA-R-121857 Safety Switch
  • Honeywell 900A01-0102 Analog Input Module
  • OMRON C500-ID219 Input Unit
  • Westinghouse EL3030R Current Limiter
  • CLA-2 3L Electric Lubrication Pump
  • Proface GP2501-TC41-24V HMI
  • Omron KM-N1-FLK Small Power Monitor
  • HPM 1D703-0040 Command 9000 Console Card
  • Siemens 3RW5074-6AB14 SIRIUS Soft Starter
  • Genie 75032 Limit Switch
  • OMRON C200H-SP001 Space Module
  • OMRON C200H-PS211 Power Supply Unit
  • OMRON C200H-OC222 Relay Output Unit
  • Keyence KV-8000SO 4221 CPU Module
  • Cincinnati Milacron 3-542-1079A Circuit Board
  • Beckhoff EL3124 Analog Input EtherCAT Terminal
  • KRONES BWU1703 0900853537 ASi PROFIBUS Gateway
  • Radio Energie RE0444 R1S 0.06 CA Tachogenerator
  • Mitsubishi GT1685M-STBA GOT1000 HMI
  • Siemens 6GK7342-5DA03-0XE0 CP 342-5 PROFIBUS
  • Allen Bradley 8520-PX-ASM3-EXEC2-63M Servo Module
  • Delta AH10PM-5A Programmable Controller
  • Siemens 3TK2805-0BB4 Safety Contactor Combination
  • EUCHNER HBA-079827 Pendant Station
  • CLC-2 4L PLC Lubrication Pump
  • KEYENCE GS-51P5 Safety Switch
  • AB 442G-MABH-R Safety Switch
  • GE Fanuc VersaMax PLC Module Set
  • Siemens 6ES7214-1HF40-0XB0 CPU 1214FC
  • Microchip DSPIC30F4011-30I/P DSC
  • FANUC A20B-2102-0081 I/O Link Module
  • Endress Hauser CLS15-B1M2A Conductivity Sensor
  • B&R 3AM050.6 Analog I/O Module
  • Fanuc A16B-2201-0320 MAIN-B CPU Board
  • Pilz 475650 PNOZ 1 Safety Gate Relay
  • Omron NSH5-AL001 Handheld HMI Terminal
  • Allen-Bradley 1756-OF8 Analog Output 8 Ch
  • Siemens 6SL3210-1SE31-0AA0 45kW Power Module
  • PMA TB45-110-00000-000 Temperature Limiter
  • PSR-SCP-24DC-ESD-5x1-1x2-300 Safety Relay
  • Pilz 774140 PZE 9 24V AC Safety Relay
  • Telemecanique TSXRKN82F 8 Slot Rack
  • Mitsubishi R16CPU iQ-R PLC CPU
  • Mitsubishi A2ACPU-R21-S1 PLC CPU
  • Omron NX-AD4208 Analog Input Unit
  • Schneider LMC802CAA10000 PacDrive 3 Controller
  • Reliance Electric 0-51874 Static Sequence Card
  • Pilz 787310 PNOZ X3P C Safety Relay
  • B&R X20CP1684 CPU Module
  • Siemens 6SN1145-1BB00-0FA1 Power Module
  • Beckhoff EL3174 Analog Input EtherCAT Terminal
  • CLC-2P 4L PLC Lubrication Pump System
  • Omron CJ1W-DA08C Analog Output Unit
  • Metso Automation D201776 ACN PO DC PLC Control Server Computer
  • GE AT868 AquaTrans Ultrasonic Flow Transmitter
  • ABB PFSA107-Z42 DTU Stressometer Digital Transmission Unit
  • ABB PFSA240 3BSE073476R1 Roll DC Supply Unit
  • Fanuc A16B-2201-0320 CPU MAIN Board
  • Pilz 475650 PNOZ 1 Safety Gate Relay
  • Omron NSH5-AL001 HMI Interface Unit
  • Allen-Bradley 1756-OF8 Analog Output Module
  • Siemens 6SL3210-1SE31-0AA0 Power Module 45kW
  • PMA TB45-110-00000-000 Temperature Limiter
  • PSR-SCP-24DC-ESD-5x1-1x2-300 Safety Relay
  • Pilz 774140 PZE 9 Safety Relay
  • Telemecanique TSXRKN82F PLC Rack Chassis
  • Mitsubishi R16CPU PLC CPU Module
  • OMRON C500-PS223-E Power Supply Module
  • Siemens 3VL4731-1DC36-0AA0 Circuit Breaker
  • Siemens 7ML5201-0EA0 Ultrasonic Level Transmitter
  • OMRON NQ3 NQ5 Touch Panel HMI
  • OMRON CJ1W-AD081-V1 Analog Input Module
  • OMRON NJ301-1100 Machine Automation Controller
  • B&R X20BC00G3 EtherCAT Bus Controller
  • Schneider ATV212HD22N4S Variable Speed Drive
  • B&R 8B0C0320HW00.002-1 Power Supply Module
  • Mitsubishi OSA105S2A Incremental Rotary Encoder
  • Pilz 777514 PNOZ XV3P Safety Relay
  • Gould AS-884A-111 Modicon 884 Controller
  • Siemens 6SC6130-0FE00 SIMODRIVE Control Card
  • Omron CV500-PS221 PLC Power Supply Module
  • ABB CM577-ETH AC500 PLC Ethernet Module
  • Omron NX-SIH400 Safety Input Unit NX Series
  • Omron NJ501-1300 Machine Automation Controller
  • Siemens 3VT8563-2AA03-2KA2 Molded Case Breaker
  • Pilz PNOZ m1p ETH 773103 Safety Controller
  • Omron CJ1H-CPU66H-R CJ1 Series CPU Module
  • ASI ASI533-S00 PLC Module S1
  • Mitsubishi AJ71C21-S1 Serial Module
  • Keyence IX-1000 Laser Sensor Amplifier
  • Siemens 6SN1145-1AA01-0AA1 Power Module
  • Siemens 3VA2340-5HL32-0AA0 MCCB 400A
  • Mitsubishi OSA104S Absolute Encoder
  • Siemens 6ES7350-1AH03-0AE0 FM 350-1 Counter
  • Siemens 6SE7038-6EK84-1JC2 IGD8 Gate Driver
  • Eaton EASY819-AC-RC Programmable Relay
  • Omron CPM1A-40CDT-D PLC 24V DC
  • Omron NA5-12W101B-V1 12-inch Programmable Terminal
  • Siemens 6ES7331-7KF02-0AB0 Analog Input SM 331
  • Moxa PTC-101-S-SC-HV Photoelectric Converter
  • Fanuc A20B-3300-0031 CNC Control Circuit Board
  • OMRON NA5-7W001B-V1 Programmable Terminal HMI
  • Parker AH385851U002 590C DC Drive Power Board
  • ABB 3BSE040662R1 AI830A Analog Input Module
  • DOLD BF9250.01/001 Solid State Relay
  • Siemens 6ES7331-7KF02-0AB0 SIMATIC S7-300 SM 331
  • ABB 07AC91 I6 GJR5252300R3101 Advant Controller 31