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.

Modbus-RTU-Relay connet.jpg

Software Preparation

Get Started to Communicate

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

1000px

  • 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.

1000px

  • 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

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

1000px

  • To subscribe to a topic and receive data:

1000px

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

1000px

  • 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.

1000px

  • 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

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

1000px

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

1000px

  • 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.

1000px

1200px

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

1000px

  • 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.

1000px

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

1000px

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

1000px

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

1000px

  • Add a subscription after a successful connection.

1000px

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

1000px

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

1000px

  • 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

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

1000px

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

1000px

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

1000px

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

1000px

  • 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

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

1000px

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

1000px

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

1000px

  • 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

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

1000px

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

1000px

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

1000px

  • 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

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

1000px

  • 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

  • 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.