Appearance
Y301-110/200/020 Technical Manual
| Y301-110 | Y301-200 | Y301-020 |
|---|---|---|
![]() | ![]() | ![]() |
Contents
- Overview
- Default Settings
- Modbus Register Map
- Command Examples
- Parameter Configuration
- Automation Rules
- Troubleshooting
1. Overview
This manual describes the Modbus RTU communication commands for the Y301-110, Y301-200, and Y301-020 I/O modules.
| Model | DI | DO | Description |
|---|---|---|---|
| Y301-110 | 1 | 1 | Single input + single relay |
| Y301-200 | 2 | 0 | Dual input monitoring |
| Y301-020 | 0 | 2 | Dual relay control |
Frame format: [slave address][function code][data][CRC low][CRC high]
The examples below use slave address 0x01. Replace it with the actual device address in your application.
2. Default Settings
| Parameter | Default |
|---|---|
| Slave address | 1 |
| Baud rate | 9600 bps |
| Data bits | 8 |
| Parity | None |
| Stop bits | 1 |
3. Modbus Register Map
3.1 Digital Input (DI) - Function Code 0x02
| Channel | Address | Supported Models |
|---|---|---|
| DI1 | 0x0000 | Y301-110, Y301-200 |
| DI2 | 0x0001 | Y301-200 |
Return value: 0 = inactive, 1 = active.
3.2 Digital Output (DO) - Function Code 0x01/0x05
| Channel | Address | Supported Models |
|---|---|---|
| DO1 | 0x0000 | Y301-110, Y301-020 |
| DO2 | 0x0001 | Y301-020 |
Write value: 0x0000 = open, 0xFF00 = closed.
3.3 Configuration Registers - Function Code 0x03/0x06
| Address | Parameter | Range | Default |
|---|---|---|---|
0x003E | Slave address | 1-255 | 1 |
0x0057 | Baud rate | 600-230400 | 9600 |
0x0059 | Data bits | 8 or 9 | 8 |
0x005A | Stop bits | 1 or 2 | 1 |
0x005B | Parity | 0=None, 1=Odd, 2=Even | 0 |
4. Command Examples
4.1 Read Digital Inputs
Read DI1 (Y301-110, Y301-200):
text
Request: 01 02 00 00 00 01 B9 CA
Response: 01 02 01 [status] [CRC]Read DI2 (Y301-200):
text
Request: 01 02 00 01 00 01 E8 0A4.2 Read Digital Output Status
Read DO1:
text
Request: 01 01 00 00 00 01 FD CA
Response: 01 01 01 [status] [CRC]Read DO2 (Y301-020):
text
Request: 01 01 00 01 00 01 AC 0A4.3 Control Digital Outputs
| Operation | Command |
|---|---|
| Open DO1 | 01 05 00 00 00 00 CD CA |
| Close DO1 | 01 05 00 00 FF 00 8C 3A |
| Open DO2 | 01 05 00 01 00 00 9C 0A |
| Close DO2 | 01 05 00 01 FF 00 DD FA |
4.4 Quick Reference Table
| Operation | Request (Hex) |
|---|---|
| Read DI1 | 01 02 00 00 00 01 B9 CA |
| Read DI2 | 01 02 00 01 00 01 E8 0A |
| Read DO1 | 01 01 00 00 00 01 FD CA |
| Read DO2 | 01 01 00 01 00 01 AC 0A |
| Open DO1 | 01 05 00 00 00 00 CD CA |
| Close DO1 | 01 05 00 00 FF 00 8C 3A |
| Open DO2 | 01 05 00 01 00 00 9C 0A |
| Close DO2 | 01 05 00 01 FF 00 DD FA |
5. Parameter Configuration
5.1 Change the Slave Address
Set the slave address to 5:
text
Request: 01 06 00 3E 00 05 E8 00
Response: 01 06 00 3E 00 05 E8 00After the change, subsequent commands must use the new address.
5.2 Change the Baud Rate
Set the baud rate to 19200:
text
Request: 01 06 00 57 00 00 4B 00 [32-bit value for 19200]Common baud-rate values:
| Baud Rate | Value |
|---|---|
| 9600 | 0x00002580 |
| 19200 | 0x00004B00 |
| 38400 | 0x00009600 |
| 115200 | 0x0001C200 |
Power-cycle the device after changing the baud rate.
5.3 Restore Factory Defaults
Hold the Reload button for 3-15 seconds to restore:
- Slave address ->
1 - Baud rate ->
9600 - All parameters -> factory defaults
6. Automation Rules
The Y301-110 supports DI -> DO automation. The Y301-200 and Y301-020 do not support local automation because one has no DO and the other has no DI.
6.1 Automation Register Map
Rules start at address 0x0080. Each rule uses 8 registers (16 bytes).
| Offset | Field | Description |
|---|---|---|
+0 | Mode | Rule type (see table below) |
+1 | Action | 0=open, 1=close, 2=toggle |
+2 | DO index | Target relay, starting from 1 |
+3 | Trigger index | Source DI, starting from 1 |
+4-5 | Parameter 1 | Mode-dependent, 32-bit |
+6-7 | Parameter 2 | Mode-dependent, 32-bit |
6.2 Rule Modes
| Mode | Name | Description |
|---|---|---|
| 0 | DI follow | DO follows the DI state |
| 1 | DI inverse | DO is the inverse of the DI state |
| 2 | Pulse | DO outputs a pulse for parameter1 ms when DI triggers |
| 3 | Delayed ON | DO closes parameter1 ms after DI closes |
| 4 | Delayed OFF | DO opens parameter1 ms after DI opens |
6.3 Example: DO1 Follows DI1
When DI1 closes, DO1 closes. When DI1 opens, DO1 opens.
Configuration:
| Field | Value |
|---|---|
| Mode | 0x0000 (DI follow) |
| Action | 0x0001 (close when DI=1) |
| DO index | 0x0001 |
| Trigger index | 0x0001 |
| Parameter 1 | 0x00000000 |
| Parameter 2 | 0x00000000 |
Modbus command:
text
01 10 00 80 00 08 10 00 00 00 01 00 01 00 01 00 00 00 00 00 00 00 00 0D FE6.4 Example: DI1 Triggers a 500 ms Pulse on DO1
Configuration:
| Field | Value |
|---|---|
| Mode | 0x0002 (pulse) |
| Action | 0x0001 (close) |
| DO index | 0x0001 |
| Trigger index | 0x0001 |
| Parameter 1 | 0x000001F4 (500 ms) |
| Parameter 2 | 0x00000000 |
7. Troubleshooting
| Symptom | Cause | Solution |
|---|---|---|
| No response | Wrong address or baud rate | Check settings and try broadcast address 0 |
| CRC error | Wiring issue or interference | Check RS485 polarity and add termination resistors |
| DO does not switch | Load exceeds rating | Reduce the load and verify contact ratings |
| DI always reads 0 | Wiring error | Check COM/DI wiring and input voltage |
LED Indicators
| LED | Status | Meaning |
|---|---|---|
| POWER | Solid on | Power is normal |
| TX | Flashing | Data is being transmitted |
| RX | Flashing | Data is being received |
| DI1/DI2 | On | Input is active |
| DO1/DO2 | On | Relay is closed |
- Manufacturer: Hunan YenGear Tech Co., Ltd.
- Email: [email protected]
- Website: www.yengear.com



