In industrial automation sites, equipment aging and the discontinuation of specialized controllers (such as certain Woodward modules or Honeywell safety system components) are the top challenges faced by engineers. When the original factory no longer supplies spare parts and the equipment still needs to operate for a long time, it is crucial to find a powerful, compatible, and cost-effective alternative solution. The DL06 series micro PLCs from Automation Direct, especially model D0-06DD1, have become a popular choice for replacing outdated controllers due to their compact body, rich I/O capabilities, powerful communication capabilities, and high-speed pulse output. This article will provide you with a complete practical guide from hardware selection, installation and wiring, communication configuration, programming skills to common troubleshooting, to help you smoothly achieve system upgrades.
D0-06DD1 Core Specification: Why it is capable of performing replacement tasks
D0-06DD1 is a fully DC PLC in the DL06 family, with built-in 20 point DC input and 16 point DC output, and compatible with sink/source input and sink output. The key parameters are as follows:
Project specifications
Power supply 100-240 VAC, 50/60 Hz, maximum 40VA
Input 20 points (can be divided into 5 public terminals, isolated)
Input voltage range 12-24 VDC
Input impedance X0-X3:1.8k Ω; X4-X23:2.8k Ω
Conductive level>5mA/10VDC
Turn off level<0.5mA/2VDC
Input response time X0-X3:<100 μ s (OFF → ON/ON → OFF); X4-X23:<8ms
Output points 16 (4 common terminals, isolated)
Output voltage range 6-27 VDC
The maximum current at each point is Y0-Y1: 0.5A (for pulse output)/1.0A (for normal output, but needs to be reduced to 0.6A to meet EN61131-2); Y2-Y17:1.0A
Maximum output frequency Y0, Y1: 7kHz (can be used as high-speed pulse output)
ON voltage drop 0.3VDC @ 1A
Leakage current<15 μ A @ 30VDC
Output response OFF → ON<10 μ s; ON→OFF <20μs(Y0-Y1)/ <60μs(Y2-Y17)
External DC power demand 20-28VDC, Y0-Y1 maximum 150mA, Y2-Y17 maximum 280mA
Advantages of Replacement:
High density I/O: 36 built-in I/O points can cover most small control systems, reducing the need for external modules.
High speed input: X0-X3 response time<100 μ s, supports high-speed counting (up to 7kHz) and pulse capture.
High speed output: Y0 and Y1 support 7kHz pulse output, suitable for stepper motor control and proportional valve drive, perfectly replacing Woodward's dedicated pulse control module.
Wide voltage input: 12-24V compatible, can be directly connected to existing sensors.
Installation and wiring: the golden rule to avoid "hidden" faults
1. Mechanical installation requirements
DL06 must be installed vertically (with cable entry facing downwards) and ensure a minimum heat dissipation gap of 38mm (1.5 inches) around it. Secure to the flat panel using M4 or M5 screws. If other equipment is installed inside the cabinet door, it is necessary to ensure that the component closest to DL06 is ≥ 38mm.
Special note: The controller should not be installed in a closed and unventilated space. The outer shell should dissipate heat through natural convection, and the heat from internal electronic components should be promptly dissipated.
2. Key points of electrical wiring
Input wiring
The input common terminal (C) can be connected to 24V+or 0V to achieve source or drain connection.
X0-X3 is a high-speed input channel, it is recommended to use shielded twisted pair cables and separate them from the power line.
Unused input terminals should remain suspended and not be short circuited to the common terminal.
Output wiring
The output of D0-06DD1 is a sinking type, which means that when the output is ON, the output terminal conducts to 0V. One end of the load is connected to the positive power supply, and the other end is connected to the output point.
When Y0 and Y1 are used for high-speed pulse output, the load impedance must meet the following requirements: ≥ 12 Ω at 24V and ≥ 6 Ω at 12V. Otherwise, if the current exceeds 2A, overload protection will be triggered.
Inductive loads (relays, solenoid valves) must be connected in parallel with freewheeling diodes (reverse parallel), otherwise the output transistor will be damaged.
External fuse: It is recommended to connect 1A or 1.5A fast melting fuses in series for each output (fuses are not included in the specifications).
Power supply and grounding
Connect the AC power terminals to L and N, and connect the protective earth (PE).
Connect the external DC power supply (for output) to the V+and COM terminals. Attention: D0-06DD1 itself does not provide 24V auxiliary power supply, and must provide 20-28V/280mA externally (at full load).
All 0V terminals (including input common terminal, output COM, external power negative terminal) should be single point grounded to the control cabinet grounding bar.

Communication Network: Seamless Replacement Bridge
Old systems often use specialized protocols such as Woodward's Modbus RTU or Honeywell's proprietary protocol. DL06 has two built-in serial ports and strong protocol compatibility.
Port characteristics
Port physical interface protocol supports role baud rate
Port 1 6-pin modular (RJ12) K-sequence, DirectNET, Modbus RTU only fixed from station 9600
Port 2 15 pin HD sub (configurable as RS-232/422/485) K-sequence (slave), DirectNET (master/slave), Modbus RTU (master/slave), ASCII input/output can be set to 300-38400
Replace key points:
Modbus RTU: When the original system uses Modbus RTU communication, DL06 Port 2 can serve as a master or slave, directly replacing the original controller. Support function codes 01/02/03/04/05/06/15/16 and simplify programming through MRX/MWX instructions.
ASCII communication: For barcode scanners, serial printers, or custom protocol devices, DL06 provides instructions such as AIN (ASCII input) and PRIMTV (print V memory ASCII string) without the need for additional converters.
Multi branch network: If multiple slave devices need to be connected, RS-485 mode of Port 2 (only supports Modbus RTU) can be used, with a maximum distance of 1200 meters.
Ethernet Expansion
When it is necessary to connect to the factory Ethernet or communicate with HMI at high speed, H0-ECOM100 module (10/100 Mbit) can be selected. This module supports Modbus TCP protocol and can directly exchange data with the upper computer or SCADA system. When replacing discontinued Woodward Ethernet modules, pay attention to remapping IP addresses and port numbers.
Software programming and logic porting
Use DirectSOFT programming software (free version limited to 100 word programs, full version unlimited). DL06 supports RLL (Relay Ladder Diagram) and RLLPLUS (Staged Flow Diagram), with a rich instruction set of 229 types, including floating-point operations PID、 Drum sequence, etc.
1. Migrating logic from old controllers
Assuming the original Woodward module is programmed using ladder diagrams or C language, the migration steps are as follows:
Map the I/O address to the X (input) and Y (output) of DL06.
Replace time relays and counters with TMR and CNT commands, paying attention to resolution (1ms/10ms/100ms optional).
The original PID circuit can be implemented using PID instructions, and Kp, Ti, and Td parameters need to be tuned.
The CNT or HSC function block is used for high-speed counting input (5kHz), and the DL06 supports a maximum of 7kHz.
2. Quick check of key instructions
Command function replacement scenario
HSC high-speed counter replaces Woodward dedicated counting module
PLS pulse output (Y0/Y1) stepper motor or servo pulse control
MRX/MWX Modbus read-write communication with the original device
AIN asynchronous serial ASCII input reading barcode/weighing instrument
PRIMTV prints V memory string and outputs alarm information to the display screen
CMPV V memory block comparison detects string changes
3. Online debugging and mandatory testing
DL06 supports Run time editing, which allows program modification without stopping the CPU, and supports the override function to force I/O to be set/reset. This is extremely useful for troubleshooting, especially in verifying external wiring during the initial replacement phase.

Power Budget: A 'Checklist' to Prevent System Overload
DL06 has 4 expansion slots that can be equipped with I/O or communication modules. Power budgeting is necessary, otherwise it may result in frequent CPU restarts or module failure.
power supply capacity
Model 5VDC maximum output 24VDC auxiliary output
D0-06DD1 1500mA (if using 24VDC auxiliary)
2000mA (without 24VDC auxiliary) 300mA (when 5V load ≤ 1500mA)
200mA (when 5V load ≥ 1500mA)
Base self consumption
D0-06DD1 itself consumes 600mA (5V) and 280mA (24V, used for output driving).
Calculation example
If configured as follows:
D0-06DD1
D0-16ND3 (16 point input module) → 35mA 5V
D0-10TD1 (10 point output module) → 150mA 5V
D0-08TR (8-point relay module) → 280mA 5V
F0-4AD2DA-1 (4AI/2AO analog) → 100mA 5V
D0-06LCD display screen → 50mA 5V
Total consumption 5V=600+35+150+280+100+50=1215mA
Total consumption 24V=280mA (only base output driver)
If choosing to use 24V auxiliary (option A): residual 5V=1500-1215=285mA, residual 24V=300-280=20mA, with margin and safety.
If the budget is not properly budgeted, difficult faults such as "PLC random shutdown" or "module unrecognizable" may occur.
Optional LCD display screen: on-site diagnosis and operation panel
D0-06LCD can be directly inserted into the front of DL06 (the original plastic cover needs to be removed first), providing:
16 characters x 2 lines backlit LCD.
7 function keys, used for browsing menus, modifying V memory values, and forcing bit operations.
Buzzer button feedback.
Two level password protection.
Replacement value: When the original system is equipped with a Woodward control panel or Honeywell local display, D0-06LCD can achieve the same monitoring function at a lower cost. Only one LCD command is needed to configure the display content, no additional programming is required.
Common troubleshooting and diagnosis
Problem 1: PLC cannot start, PWR indicator light is off
Reason: AC power supply missing or fuse blown; The internal switch power supply is damaged.
Solution: The measured voltage between L-N should be 100-240VAC; Check the external circuit breaker. If the voltage is normal but still does not light up, the CPU needs to be replaced.
Problem 2: The RUN indicator light is not on, and the CPU light is flashing or constantly on
Reason: Program error (such as dead loop, watchdog timeout); Hardware malfunction.
Solution: Switch to STOP mode, clear error logs, and download the program again. Check if there is an instruction causing an infinite loop.
Problem 3: A certain input point cannot detect a signal
Reason: Wiring error (source/leakage reversed); Insufficient input voltage (<10V); The input point is damaged.
Solution: Measure the voltage between the input terminal and the common terminal. For X0-X3, the high-speed counting function can be turned off to test whether it is a normal input.
Question 4: Y0/Y1 has no pulse output
Reason: PLS instructions were not configured correctly; Output load exceeding 0.5A (derating required at high frequencies); The external power supply is not connected.
Solution: Confirm that the V+terminal is connected to 24V and the COM is connected to 0V. Use an oscilloscope to measure the waveform of Y0 on the COM. Reduce frequency or current.
Question 5: Modbus communication timeout
Reason: baud rate/data format mismatch; Station number conflict; RS-485 terminal resistor not added.
Solution: Check the Port 2 settings (AUX menu in the software). Use Modbus debugging tools to capture messages.
Question 6: After downloading the program, the PLC enters the STOP state
Reason: The program contains illegal instructions or exceeds memory.
Solution: View DirectSOFT compilation error messages. DL06 ladder memory is 7680 words, V memory is 7616 words, please do not exceed the limit.
Actual replacement case: Taking Woodward 2301A as an example
Background: A certain generator set originally used Woodward 2301A speed controller (now discontinued), responsible for diesel engine speed PID regulation and actuator drive. The actuator is a 0-20mA current type.
Alternative plan:
Select D0-06DD1+F0-04DA-1 (4-channel 0-20mA analog output module).
Magnetic electric speed sensor (sine wave) calculates frequency through frequency input module (such as H0-CTRIO2 high-speed counter) or directly by X0-X3 high-speed input shaping.
PID program: Compare the set speed (rpm) with the actual speed and output 0-20mA to the actuator.
Retain the original emergency stop button of the unit (connected to X4, set as interrupt input).
Use Modbus RTU to communicate with the upper computer through Port 2 and upload parameters such as speed and oil temperature.
Debugging points:
Measure the frequency using HSC instructions, with a cycle of 0.5 seconds, and calculate the rotational speed.
The sampling time of the PID instruction is set to 100ms, with an initial ratio of 20%, an integration time of 2 seconds, and a differentiation of 0.
The analog output module needs to be calibrated: use a multimeter to measure the 0-100% actuator opening corresponding to 4-20mA.
