LC-Modbus-2R-D7
zoom_out_map
chevron_left chevron_right

ad2.jpg

Advertising [AfterProductThumbs]

New

LC-Modbus-2R-D7

Modbus RTU 2-way Relay Module RS485/TTL UART Input Output

€0.00

€0.00 Tax excluded

ad3.jpg

Advertising [ProductAdditionalInfo]

local_shipping FREE shipping on orders over $25.00 shipped by Amazon. Details

ad.jpg

Advertising [Product3rdColumn]

Security policy
Site hosted and secured in Eu.
Delivery policy
Packages transported with the service of Bpost, DpD, PostNl or your own carrier.
Return policy
Defective devices (not electronic components) are (according to the manufacturer's warranty) exchanged or repaired.

 Overview
LC 2-way Modbus relay module equipped with mature and stable 8-bit MCU and RS485 level communication chip,adopt standard MODBUS RTU format RS485 communication protocol. It can realize 2-way input signal detection and 2-way relay output, can be used for digital detection or power control occasions.

Function
1.Onboard mature and stable 8-bit MCU and RS485 level communication chip
2.Communication protocol: support standard Modbus RTU protocol
3.Communication Interface: support RS485/TTL UART interface
4.Communication baud rate: 4800/9600/19200,default 9600bps, Support power-down save.
5.Optocoupler input signal range, DC3.3-30V(this input can’t use relay control)
6.Output signal:relay switch signal, support manual control,flash OFF/ON mode,The delay base is 0.1S,the maximum allowable flash OFF/ON time is 0xFFFF*0.1S=65535*0.1S=6553.5S
7.Device address:range: 1-255,default 255,Support power-down save
8.Baud rate/optocoupler input status/relay status/device address can be read by software/commands
9.Onboard 2 way 5V,10A/250V AC 10A/30V DC relay,can continuously sucking 100,000 times, it has diode flow protection for short response times
10.Onboard relay switch indicator
11.Supply voltage:DC7-24V,with input anti-reverse protection

Hardware introduction and description


2.Interface description



1.VCC,GND: DC7-24V power input
2.DC3.3-30V Optocoupler signal input
IN1: channel 1 positive
IN2: channel 2 positive
GND_IN: common terminal negative
3.A+,B-: RS485 communication Interface
4.Relay 1 switch signal output
NC1: normally closed end
COM 1: common end
NO1: normally opened end
5.Relay 2 switch signal output
NC2: normally closed end
COM 2: common end
NO2: normally opened end
6.Relay indicator:Lights up when the relay ON
7.GND,RXD,TXD: TTL level UART communication Interface,GND,RXD,TXD separately connect to the external control terminal GND,TXD,RXD; support connect 3.3V/5v  external  TTL serial ports
8.RS485 and TTL serial ports select,when use RS485 communicating,DI connect  to TXD 、RO connect to RXD: DI and RO connect NC terminal when use TTL communicating

Modbus RTU introduction of instruction
Modbus device through receive from external control terminal (like Host computer/MCU ) Modbus RTU instruction to perform related operations, one frame instruction generally consists of device address, function code, register address, register data, and check code,frame length is related to function code. Each frame date’s first byte is the device address.can set range on 1-255 default 255(scilicet 0xFF),the last 2byte is CRC check code.

Suppose the device address is 255, the commonly used Modbus RTU instructions are as follows:

(1)Open no.1 relay (manual mode)
Send: FF 05 00 00 FF 00 99 E4
Return: FF 05 00 00 FF 00 99 E4
Remark:
1.The 3--4th byte of the transmitted frame represents the relay address,the relay 1-relay 8 address are respectively  0x0000,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006,0x0007
2.The 5--6th byte of the transmitted frame represents Data,0xFF00 represent  turn on relay,0x0000 represents turn off relay

(2)Turn off the relay No. 1 (manual mode)
Send: FF 05 00 00 00 00 D8 14
Return: FF 05 00 00 00 00 D8 14

(3)Turn on the relay No. 2 (manual mode)
Send: FF 05 00 01 FF 00 C8 24
Return: FF 05 00 01 FF 00 C8 24

(4)Turn off the relay no.2 (manual mode )
Send: FF 05 00 01 00 00 89 D4
Return: FF 05 00 01 00 00 89 D4

(5)Turn on all relay
Send: FF 0F 00 00 00 08 01 FF 30 1D  
Return: FF 0F 00 00 00 08 41 D3

(6)Turn off all relay
Send: FF 0F 00 00 00 08 01 00 70 5D
Return: FF 0F 00 00 00 08 41 D3

(7)Set the device address to 1
Send: 00 10 00 00 00 01 02 00 01 6A 00
Return: 00 10 00 00 00 01 02 00 01 6A 00
Remark:
The 9th byte of the transmitted frame, 0x01 is the written device address.

(8)Set the device address to 255
Send: 00 10 00 00 00 01 02 00 FF EB 80
Return: 00 10 00 00 00 01 02 00 FF EB 80
Remark:
The 9th byte of the transmitted frame, 0xFF is the written device address.

(9)Read device address
Send: 00 03 00 00 00 01 85 DB
Return: 00 03 02 00 FF C5 C4
Remark:
The 5th byte of the Return frame, 0xFF is the read device address

(10)Read relay state
Send: FF 01 00 00 00 08 28 12
Return; FF 01 01 01 A1 A0
Remark:
The 4th byte of the Return frame,Bit0--Bit7 of 0x01 representing relay 1-relay 8, 0 is turn off .1 is turn on.

(11)Read optocoupler input status
Send : FF 02 00 00 00 08 6C 12
Return : FF 02 01 01 51 A0
Remark:
The 4th byte of the Return frame, Bit0--Bit7 of 0x01 represent  optocoupler1- optocoupler 8 input signal ,0 represent low level ,1 Represent high level

(12)Set the baud rate to 4800
Send: FF 10 03 E9 00 01 02 00 02 4A 0C
Return: FF 10 03 E9 00 01 C5 A7
Remark:
the 9th byte of the transmitted frame is the baud rate setting value ,0x02, 0x03, x04 represents 4800, 9600, 19200

(13)Set the baud rate to 9600
Send: FF 10 03 E9 00 01 02 00 03 8B CC
Return: FF 10 03 E9 00 01 C5 A7
 

(14)Set the baud rate to 9600
Send: FF 10 03 E9 00 01 02 00 04 CA 0E
Return: FF 10 03 E9 00 01 C5 A7

(15)Read the baud rate
Send: FF 03 03 E8 00 01 11 A4
Return: FF 03 02 00 04 90 53
Remark:
The 5th byte of the Return frame represent baud rate, 0x02, 0x03, x04 represents 4800,9600,19200

(16)Turn on no.1 relay (flash ON mode )
Send: FF 10 00 03 00 02 04 00 04 00 14 C5 9F
Return: FF 10 00 03 00 02 A4 16
Remarks:
(1)The 3-4th byte of the transmitted frame is represent relay address,relay1-relay8’s address separately is 0x0003,0x0008,0x000D,0x0012,0x0017,0x001C,0x0021,0x0026
(2)The 10th-11th byte of the transmitted frame represents the delay setting value, and the delay base is 0.1S, so the delay time is 0x0014*0.1=20*0.1S=2S, and the relay automatically turns off after turned on 2S

(17)Turn off no.1 relay(flash OFF mode)
Send: FF 10 00 03 00 02 04 00 02 00 1E A5 99
Return: FF 10 00 03 00 02 A4 16
Remarks:
(1)the 3-4th byte of the transmitted frame is represent relay address,relay1-relay8’s address separately is 0x0003,0x0008,0x000D,0x0012,0x0017,0x001C,0x0021,0x0026.
(2)The 10th-11th byte of the transmitted frame represents the delay setting value, and the delay base is 0.1S, so the delay time is 0x001E*0.1=30*0.1S=3S,and the relay automatically turns off after turned on 3S

Simple instructions
Modbus relay module can via RS485/TTL UART interface received from host computer /MCU’s  Modbus RTU command to perform related operations.The following is an example of using the host computer software via the RS485 interface to open relay 1 (manual mode),suppose device address for 255.baud rate is 9600,Then steps of usage as follows:
(1)VCC,GND: Connect to the power
(2)A+,B-: Connect to A+ and B- of external device
(3)Turn on host computer software ModbusRTU configuration Tool,choose correct port number, baud rate is 9600.default address is 255,click open serial ports4,
then click ”JD1 ON” button can turn on relay 1 ,meanwhile indicator of relay 1 lights up
as below:


How to generate check code
Modbus RTU command are send through upper PC software (like:ModbusRTU configuration Tool ),CRC check code is auto generated, if want use serial debugging software (like SSCOM )to test Modbus relay module then need manually generated
CRC check code put on the end of transmitted frame, such as turn on the first relay (manual mode)
1.Turn on/off of relay (manual mode) transmitted frame composition:
device address (1Byte)+function code(1Byte)+ register address(2Byte) +register data (2Byte)+CRC check code (2Byte)
2.Suppose the device address is 0xFF, Then the first 6 bytes of the transmitted frame are FF 05 00 00 FF 00
3.Use the CRC check tool to check the 6 bytes:http://www.ip33.com/crc.html



4.Exchange checksum calculation result E499 high and low byte position then get CRC check code 99E4,and complete transmission frame:FF 05 00 00 FF 00 99 E4
5.Through serial port debugging software SSCOM V5.13.1 use the transmission frame send to modbus relay module can open first way relay (manual mode),as bellow:



Please refer our date if you need more detailed instructions and usage of way in host computer control modbus relay

LC-Modbus-2R-D7

Returns Policy

You may return most new, unopened items within 30 days of delivery for a full refund. We'll also pay the return shipping costs if the return is a result of our error (you received an incorrect or defective item, etc.).

You should expect to receive your refund within four weeks of giving your package to the return shipper, however, in many cases you will receive a refund more quickly. This time period includes the transit time for us to receive your return from the shipper (5 to 10 business days), the time it takes us to process your return once we receive it (3 to 5 business days), and the time it takes your bank to process our refund request (5 to 10 business days).

If you need to return an item, simply login to your account, view the order using the 'Complete Orders' link under the My Account menu and click the Return Item(s) button. We'll notify you via e-mail of your refund once we've received and processed the returned item.

Shipping

We can ship to virtually any address in the world. Note that there are restrictions on some products, and some products cannot be shipped to international destinations.

When you place an order, we will estimate shipping and delivery dates for you based on the availability of your items and the shipping options you choose. Depending on the shipping provider you choose, shipping date estimates may appear on the shipping quotes page.

Please also note that the shipping rates for many items we sell are weight-based. The weight of any such item can be found on its detail page. To reflect the policies of the shipping companies we use, all weights will be rounded up to the next full pound.

  • "Excellent products and excellent service." - Josephine
  • "Excellent value. High quality products at reasonable prices." - Warren
  • "Outstanding customer service." - Jack
  • "You're the best! Thank you!" - Tatiana