Modbus POE ETH Relay MQTT

From Waveshare Wiki
Jump to: navigation, search

Hardware Connection

  • Connect the Modbus POE ETH Relay to the LAN via a network cable and power it through the power port or through POE.

600px-Modbus-POE-ETH-Relay-details-3.jpg

Software Preparation

Get Started to Communicate

  • Register an account to access the Alibaba Cloud IoT Platform and activate a public instance.

1000px-Relay mqtt 2.png

  • Click Device Management -> Products -> Create a product, enter the product name, the example name is Waveshare, and choose a custom category to belong to. Other defaults are available.

Relay mqtt 3.png

  • After creating the product, click View Product Details below to enter the product page and select the Topic category list to go to the Topic page to add a custom topic.

1000px-Relay mqtt 13.png

  • Select Topic class list -> Custom Topic -> Define Topic class, create a publish topic send to send data.

1000px-Relay mqtt 44.png

  • To subscribe to a topic and receive data.

1000px-Relay mqtt 45.png

  • Select Device Management -> Devices -> Add Device. Add a device named 'Relay', which is a relay module.

1000px-Relay mqtt 4.png

  • For testing, you can add a device named mqttx device, the Ali cloud web page can only send text data and can not send binary data, so use mqttx software to facilitate debugging.

Relay mqtt 5.png

  • After adding the devices, you can view two devices named "mqttx" and "relay" in the device list. Click on "View" to enter the page for the "Relay" device.

1200px-Relay mqtt 15.png

  • Select "Device Information" -> "MQTT Connection Parameters" to view the MQTT connection parameters.

1000px-Relay mqtt 12.png

  • Open Vircom -> Device Management -> left mouse click on the corresponding device -> Firmware and Configuration -> MQTT Configuration and enter the configuration page.

1000px-Relay mqtt 14.png

  • Configure the connection parameters based on the Relay device MQTT connection information. When the configuration is complete, select Save MQTT Settings and click Download again.

Relay mqtt 18.png

1200px-Relay mqtt 46.png

  • Note: You can get the AliCloud IP address by pinging mqttHostUrl.

Relay mqtt 19.png

  • Set the target IP and target port, and click Modify Settings to save. Note: If the local port is 0 then you need to modify a non-zero port, otherwise you cannot connect.

Relay mqtt 20.png

  • After a successful connection, you can see that the Relay device has gone from inactive to online.

1000px-Relay mqtt 21.png

  • Download the MQTTX software and install it, creat a new connection after successful installation.

1000px-Relay mqtt 22.png

  • Create a new connection based on the mqttx device MQTT connection parameters.

1000px-Relay mqtt 23.png

  • Add a subscription after a successful connection.

1000px-Relay mqtt 0024.png

  • Enter the sent topic, select hex to send and hex display, and send the data.

1000px-Relay mqtt 25.png

  • Select Monitor Ops -> Log Services -> Cloud Operation Log to check the information received from the cloud and select hex to display.

1000px-Relay mqtt 27.png

  • At this point, both the Relay device and the mqttx device have been connected to the cloud platform, but it is not yet possible to control the relays through the mqttx software, and finally, message forwarding needs to be added.
  • Select Message Forwarding -> Cloud Product Flow -> Data Source -> Create Data Source, the data source name is mqttx-send.

1000px-Relay mqtt 30.png

  • Go to edit page, add Topic, select custom, waveshare product, mqttx device, user/send topic.

Relay mqtt 31.png

  • Select Message Forwarding -> Cloud Product Flow -> Data Source -> Create Data Source and then add a data source with the name of relay-send.

Relay mqtt 32.png

  • Go to edit page, add Topic, select custom, waveshare product, relay device, user/send topic.

Relay mqtt 33.png

  • Select Message Forwarding -> Cloud Product Flow -> Data Destination -> Create Data Destination, the data destination name is mqttx-receive.

1000px-Relay mqtt 47.png

  • Select Message Forwarding -> Cloud Product Flow -> Data Source -> Create a data source and then add a data destination with the name of relay-receive.

1000px-Relay mqtt 48.png

  • Select Message Forwarding -> Cloud Product Flow -> Parser -> Create a parser with the name mqttx-to-relay.

1000px-Relay mqtt 49.png

  • Open mqttx-to-relay edit page -> Data Source -> Associated Data Source,Data Source select mqttx-send

Relay mqtt 50.png

  • Data destination -> associate data destination->data destination selection relay-receive

1000px-Relay mqtt 51.png

  • Parser script, add the following code and publish, where 1005 is the relay-receive data destination ID, /ipl390TLRtl/Relay/user/receive is the relay receive topic, needs to be more practical to modify.
//Through the payload function, get the message content reported by the device and convert the payload data into binary variables for pass-through
var data = payload("binary");
//Forwarding data to relays
writeIotTopic(1005, "/ipl390TLRtl/Relay/user/receive", data);

1000px-Relay mqtt 52.png

  • Select Message Forwarding -> Cloud Product Flow -> Parser -> Create Parser then create a parser with the name relay-to-mqttx.

1000px-Relay mqtt 53.png

  • Open mqttx-to-relay edit page -> data source -> associate data source, data source select relay-send.

Relay mqtt 54.png

  • Data Destination -> Associate Data Destination -> Data Destination Select mqttx-receive.

1000px-Relay mqtt 55.png

  • Parser script, add the following code and publish, where 1004 is the mqttx-receive data destination ID, /ipl390TLRtl/mqttx/user/receive is the mqttx receive topic, need to be more practical to modify.
//Through the payload function, get the message content reported by the device and convert the payload data into binary variables for pass-through
var data = payload("binary");
//Forwarding data to relays
writeIotTopic(1004, "/ipl390TLRtl/mqttx/user/receive", data);

1000px-Relay mqtt 56.png

  • Finally, select Start Parser to implement data forwarding. Message forwarding is configured and enabled.

1000px-Relay mqtt 57.png

  • At this point, you can send commands to control the relays via MQTTX. Send the relay flip command as shown below. Under normal circumstances, the relay will be flipped and the command data will be returned.

1000px-Relay mqtt 43.png

  • The operation is now complete. You can try to send more Modbus commands to test. The data flow is shown below.
  • MQTTX sends the command -> AliCloud receives the data and forwards it to relay -> relay receives the data to execute the action and return the data to AliCloud -> Ali cloud receives data and forwards to mqttx -> MQTTX receives the return data.