In the development of industrial automation, the OMRON C200H series programmable logic controller (PLC) has become the core of countless factory control systems due to its modular rack structure, rich instruction set, and extremely high reliability. Although the C200H series has gradually withdrawn from the mainstream market, it remains a classic equipment that engineers must face in a large number of old production lines, renovation projects, and emergency repair scenarios. This article will systematically summarize the technical points of C200H (CPU01-E/03-E/11-E) from hardware configuration, memory area, programming skills to fault diagnosis, providing a complete technical manual for on-site maintenance and programming debugging.
System Overview: Rack Structure and Hardware Composition
C200H adopts a rack mounted structure, mainly including:
CPU rack: Install CPU units, power units, and up to 10 I/O units or special I/O units.
Expansion I/O rack: Up to 2 can be connected, and each expansion rack can also install up to 10 units, communicating with the CPU rack through I/O connection cables.
Slave rack: Used in remote I/O systems, controlled by the remote I/O master unit.
The CPU unit model determines the system capability: CPU01-E/03-E does not support SYSMAC LINK/NET Link, while CPU1-E supports these advanced networks. Memory units (RAM/EEPROM/EEPROM) provide program storage (UM) and data storage (DM), with battery powered RAM units able to retain data after power failure.
Memory Region Detailed Explanation: Each Address is the Key to Diagnosis
The memory of C200H is divided into multiple data areas, and understanding the purpose of each area is the foundation for programming and troubleshooting.
1. IR zone (internal relay, letter 000-235)
I/O words: Words 000-029 are assigned to slots on CPU racks and expansion racks, with each slot corresponding to a word. The input bit (such as 00000) reflects the status of the external input signal, and the output bit (such as 00200) controls the external load.
Job position: Words not assigned to I/O (such as 030-235) can be used as internal relays, but their status is lost after power failure.
Special I/O units and slave allocation: Unit numbers 0-9 occupy characters 100-199 (special I/O) or 050-099 (slave).
2. SR area (special relay, letters 236-255)
The SR area contains system flags and control bits, and is the primary source of information for fault diagnosis. Key positions include:
25308: Low battery flag (RAM cell battery voltage drops).
25309: Cycle time error flag (cycle exceeding 100ms).
25310: I/O verification error flag (actual installed unit does not match registered I/O table).
25313: Always ON symbol.
25314: Constant OFF symbol.
25315: First cycle flag (ON only during the first scan cycle after the start of operation).
25400-25502: Clock pulses (1 minute, 0.02 seconds, 0.1 seconds, 0.2 seconds, 1.0 seconds).
25503: Instruction execution error flag (ER), ON when operand exceeds range or indirect DM address does not exist.
25504-25507: Arithmetic flags (CY, GR, EQ, LE) used for comparison and operation instructions.
25215: Output OFF position, set ON to force all output units to power off.
3. AR area (auxiliary relay, letters AR00-AR27)
The multiple digits in the AR area are dedicated and remain in a power-off state. Key position:
AR0000-0009: Special I/O unit or PC Link unit error flag.
AR0014/0015: Remote I/O master station 0/1 error flag.
AR0200-0204: Slave rack 0-4 error flag.
AR2404 (CPU1-E): CPU unit low battery flag.
AR26/27: Maximum/current cycle time (BCD format).
AR18-AR21 (CPU11-E): Calendar/clock data (year, month, day, hour, minute, second, week).
4. DM area (data storage, words DM0000-DM1999)
DM0000-0999: User readable/writable, power off hold.
DM0969-0999 (CPU11-E): Error History Area, capable of storing the last 10 errors (error code, time, date), in conjunction with AR0713-0715 control.
DM1000-1999: Special I/O unit parameter area (read-only, requires programming device to write).
5. HR area (holding relay, HR00-HR99)
Power off hold, used for data that needs to be saved in state.
6. LR area (link relay, LR00-LR63)
Used for data exchange in PC Link or SYSMAC Link systems; Can be used as a workspace when not in use.
7. TC area (timer/counter, TC000-TC511)
Each TC number can be defined as a timer (TIM/TIMH) or a counter (CNT/CNTR). As a bit operand, access completion flag; Accessing the current value (PV) as a word operand.
8. TR area (temporary relay, TR0-TR7)
Only used for temporarily storing execution conditions in branch ladder diagrams and cannot be used across instruction blocks.

Keystone Programming Core: From Basic Instructions to Structured Design
The ladder diagram programming of C200H shares the same logic as relay control, and understanding the scanning mechanism is key.
1. Basic instructions
LD/LD NOT: Read normally open/normally closed contacts to start a logical line.
AND/AND NOT: Connect normally open/normally closed contacts in series.
OR/OR NOT: Parallel normally open/normally closed contacts.