Skip to content

Y113 Seven-Segment LED Display Module Technical Manual (RS485)

This document applies to the RS485 version of the Y113. The Y113 family includes submodels with 1 to 6 display digits. For product selection and general specifications, see the Y113 Specification.


Contents

SectionDescription
1Scope and Submodels
2Hardware and Electrical Parameters
3Communication Protocol and Serial Settings
4Holding Register Map
5Display Data Organization
6Modbus Command Examples
7Commissioning and Parameter Activation Rules
8Troubleshooting
9Support and Contact

1. Scope and Submodels

SeriesSubmodelDisplay DigitsProtocolNotes
Y113Y113-11 digitModbus RTUDimensions vary by digit count
Y113Y113-22 digitsModbus RTUSame as above
Y113Y113-33 digitsModbus RTUSame as above
Y113Y113-44 digitsModbus RTUSame as above
Y113Y113-55 digitsModbus RTUSame as above
Y113Y113-66 digitsModbus RTUSame as above
ItemDescription
Interfaces covered by protocol materialsRS485 / RS232 / TTL, depending on the ordered version
Scope of this manualRS485 version only
RS485 bus capacityAbout 32 nodes without repeaters; up to 254 with repeaters

Engineering notes:

  • The register map is designed for the maximum 6-digit display capability, using 0000H to 0005H.
  • If a submodel has fewer than 6 digits, only the first N digit registers are effective, where N is the display digit count of the submodel. Writes beyond that range usually do not appear on the display.
  • For decimal point and flashing bitmaps, use only the valid bits for the installed submodel.

2. Hardware and Electrical Parameters

2.1 Electrical and Environmental

ParameterValue
Supply voltageDC 5 to 36 V
Communication distance0 to 1200 m, extendable with repeaters
Operating temperature-40 °C to +85 °C
Operating humidity0% to 95% RH, non-condensing
Mounting methodSnap-in mounting

2.2 Terminal Definition (4-pin)

Terminal MarkingMeaning on RS485 VersionNotes
+Power positive
-Power negative
A/TRS485 AReused as TXD on the TTL version
B/RRS485 BReused as RXD on the TTL version

3. Communication Protocol and Serial Settings

3.1 Protocol Capability

ItemDescription
ProtocolModbus RTU
Register typeHolding register, 16-bit unsigned
Supported function codes0x03 Read Holding Registers, 0x06 Write Single Register, 0x10 Write Multiple Registers
Address range1 to 255, with 0 reserved for broadcast

3.2 Serial Port Parameters

ParameterOptionsFactory Default
Baud rate4800 / 9600 / 14400 / 19200 / 38400 / 56000 / 57600 / 115200 and up to 128000 / 256000 through register settings9600
Start bit1 bit1 bit
Data bits8 bits8 bits
Stop bits1 / 1.5 / 21
ParityNone / Odd / EvenNone

4. Holding Register Map

All addresses below are hexadecimal register addresses, for example 000AH.

AddressReset ValueR/WNameDescriptionPower-Loss Retention
0000H0x30R/WDIG1Character for digit 1, ASCII codeYes
0001H0x30R/WDIG2Character for digit 2, ASCII codeYes
0002H0x30R/WDIG3Character for digit 3, ASCII codeYes
0003H0x30R/WDIG4Character for digit 4, ASCII codeYes
0004H0x30R/WDIG5Character for digit 5, ASCII codeYes
0005H0x30R/WDIG6Character for digit 6, ASCII codeYes
0006H0R/WDATA_FMT_HICombined with 0007H for 24-bit numeric display. In the high byte, the upper nibble is sign control (0 positive, 1 negative), the lower nibble is decimal point count (0 to 5), and the low byte is the highest 8 bits of the 24-bit value.Yes
0007H0R/WDATA_24_LOCombined with 0006H. The high byte is the middle 8 bits of the 24-bit value, and the low byte is the lowest 8 bits.Yes
0008H0R/WFLASH_MASKFlashing bitmask. bit0 corresponds to digit 1. 1 means flashing.No
0009H0R/WDISP_SAVEDisplay retention. 0 = do not retain, 1 = retain all display content.Yes
000AH1R/WDEV_ADDRRS485 slave address. 1 to 255, with 0 as broadcast.Yes
000BH1R/WBAUD_CFGBaud rate code. See the table below.Yes
000CH0R/WSTOP_CFGStop bits. 0 = 1 bit, 1 = 1.5 bits, 2 = 2 bits.Yes
000DH0R/WPARITY_CFGParity. 0 = None, 1 = Odd, 2 = Even.Yes
000EH3R/WBRIGHTBrightness, 0 to 7. 0 is the dimmest and 7 is the brightest.Yes
000FH0R/WBOOT_MODEPower-on display. 0 = show 0, 1 = show address, 2 = show retained data.Yes
0010H0R/WDECIMAL_CNTDecimal point countYes
0011H0R/WSIGN_SETSign setting. 0 = positive, 1 = negative, showing the minus sign.Yes

4.1 Baud Rate Code Table (000BH)

CodeBaud Rate (bps)
04800
19600
214400
319200
438400
556000
657600
7115200
8128000
9256000

5. Display Data Organization

ModeRegistersTypical UseWrite Method
Per-digit character mode0000H to 0005HDisplay mixed content such as A001, B002, or -12.3Write ASCII values by digit using 0x06 or 0x10
24-bit numeric mode0006H + 0007H, optionally with 0010H and 0011HDisplay integers, decimals, or signed values directly0x10 multi-register write is recommended
ItemRule
Flashing controlControlled by the 0008H bitmask. Each bit maps to one display digit. 1 means flashing.
Decimal point and signCan be encoded in the high byte of 0006H, or configured separately through 0010H and 0011H
Display retentionControlled by 0009H
Submodel digit-width limitFor Y113-N, only the first N digit registers should be written, where N = 1 to 6

6. Modbus Command Examples

The request frames below use RTU hexadecimal format. The default slave address is 01, and the CRC values are already included.

6.1 Communication and Runtime Parameter Settings (0x06)

PurposeRegisterValueRequest Frame (Hex)
Change slave address to 2000AH000201 06 00 0A 00 02 28 09
Set baud rate to 19200000BH000301 06 00 0B 00 03 B8 09
Set baud rate to 38400000BH000401 06 00 0B 00 04 F9 CB
Set stop bits to 2000CH000201 06 00 0C 00 02 C8 08
Set even parity000DH000201 06 00 0D 00 02 99 C8
Set brightness to 7000EH000701 06 00 0E 00 07 A9 CB
Set power-on display to address000FH000101 06 00 0F 00 01 78 09
Enable display retention after power loss0009H000101 06 00 09 00 01 98 08
Set flashing bitmask, digits 1 and 3 flashing0008H000501 06 00 08 00 05 C8 0B

6.2 Character Display Commands

PurposeFunction CodeRequest Frame (Hex)Description
Show 1 on digit 10x0601 06 00 00 00 31 48 1EWrites 0000H = 0x0031
Batch display 12340x1001 10 00 00 00 04 08 00 31 00 32 00 33 00 34 5E A5Writes 0000H to 0003H continuously

6.3 Numeric Display Commands (0006H + 0007H)

PurposeFunction CodeRequest Frame (Hex)Description
Display 12345 using numeric format0x1001 10 00 06 00 02 04 00 00 30 39 A7 970006H = 0x0000, 0007H = 0x3039
Display 12.3450x1001 10 00 06 00 02 04 03 00 30 39 A7 D3Lower nibble of the high byte in 0006H is 3, meaning 3 decimal places

7. Commissioning and Parameter Activation Rules

7.1 Software Commissioning Flow

StepAction
1Open the test page for the seven-segment display
2Select serial settings, typically starting with address 1, 9600, 8N1
3After a successful connection, run single-digit and batch display tests
4Configure the slave address, baud rate, stop bits, parity, brightness, and flashing
5Save the configuration, power-cycle the device, and verify the settings

7.2 Notes on Parameter Activation

ItemRule
Communication parameter changesAfter changing the address, baud rate, stop bits, or parity, the host must switch to the new settings before communication can continue
Parameter retentionAfter writing retained parameters, verify them again after a restart
Submodel differencesSubmodels with different digit counts only differ in visible display width; the protocol is the same
CompatibilityFirmware may vary slightly across production batches, so reading back key parameters is recommended before volume deployment

8. Troubleshooting

SymptomPossible CauseRecommended Action
Cannot connectAddress or serial settings do not matchReturn to the default settings of address 1, 9600, 8N1 and check each item in sequence
Requests sent with no responseA/B wiring reversed, poor contact, or serial port occupiedCheck wiring polarity and terminal crimping, and close other serial software
Device appears offline after address changeHost is still using the old addressCommunicate with the new address, or scan the full address range if necessary
Display content is lost after power-offDisplay retention not enabledWrite 0009H = 1, then power-cycle and verify
Flashing does not workIncorrect 0008H bitmask settingCheck the bit-to-digit mapping, where bit0 corresponds to digit 1
Abnormal display on low-digit submodelsRegisters beyond the available digit count were writtenFor Y113-N, write only the first N digit registers

9. Support and Contact

ItemInformation
ManufacturerHunan YenGear Tech Co., Ltd.
Email[email protected]
Websitewww.yengear.com