Hello @spike318
Okay, I will show an example.
If Iยดm correct and as I saw on the link you provided, we have to send a message to the MQTT server as follows:
{
topic: "leddisplay/text",
payload: "your message here"
}
You can also set the intensity and scroll speed..
{
topic: "leddisplay/intensity",
payload: "2" // max is 15 and min 0
}
{
topic: "leddisplay/scroll",
payload: "100" // max is 255 and min 0
}
As an example we will send the Current Power Consumption of the P1 Smart Meter Device.
Step 1.
Drag and drop a MQTT input node and configure it in such a way that it communicates with Domoticz and the topic domoticz/out.

- Screenshot_Display kWh2.png (19.75 KiB) Viewed 1143 times
The output of this node will present all Domoticz devices. This is not what we want, as we only want the P1 Smart meter.
So go to Domoticz and search in the Setup ==> Devices for your Smart Meter and note its IDX number.
The next node we need is a "Switch" node in order to filter only the Smart Meter Device.

- Screenshot_Display kWh3.png (13.98 KiB) Viewed 1143 times
In my case the Smart Meter has IDX 17. Replace this number with the IDX of your Smart Meter.
The next node we will use is a "Function" node.
The contents of this node is as follows:
Code: Select all
msg.payload = "Power Consumption: " + msg.payload.svalue5 + " Watt";
return msg;
This will give a text as "Power Consumption: 123 Watt" on your display.
The final node is a MQTT Output node which publishes the value to the MQTT server (broker).
Configure this with the topic "leddisplay/text".
The result is then as follows:

- Screenshot_Display kWh1.png (60.52 KiB) Viewed 1143 times
Please find the complete flow below:
Code: Select all
[{"id":"a73572f2.89ada8","type":"tab","label":"Display","disabled":false,"info":""},{"id":"f2f584b1.fdc038","type":"mqtt in","z":"a73572f2.89ada8","name":"MQTT from Domoticz","topic":"domoticz/out","qos":"2","datatype":"json","broker":"8591549f.77809","nl":false,"rap":true,"rh":0,"x":620,"y":120,"wires":[["d5cf83b.84a41"]]},{"id":"d5cf83b.84a41","type":"switch","z":"a73572f2.89ada8","name":"Filter Smart Meter","property":"payload.idx","propertyType":"msg","rules":[{"t":"eq","v":"17","vt":"num"}],"checkall":"true","repair":false,"outputs":1,"x":870,"y":120,"wires":[["212d3b58.1abc14","73a88cc5.8188f4"]]},{"id":"212d3b58.1abc14","type":"debug","z":"a73572f2.89ada8","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1090,"y":60,"wires":[]},{"id":"73a88cc5.8188f4","type":"function","z":"a73572f2.89ada8","name":"","func":"//var power_consumption = msg.payload\nmsg.payload = \"Power Consumption: \" + msg.payload.svalue5 + \" Watt\";\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1080,"y":120,"wires":[["c775a64d.63aac","d984877c.6eee08"]]},{"id":"c775a64d.63aac","type":"mqtt out","z":"a73572f2.89ada8","name":"MQTT to Display","topic":"leddisplay/text","qos":"0","retain":"false","respTopic":"","contentType":"","userProps":"","correl":"","expiry":"","broker":"8591549f.77809","x":1290,"y":120,"wires":[]},{"id":"d984877c.6eee08","type":"debug","z":"a73572f2.89ada8","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1270,"y":180,"wires":[]},{"id":"8591549f.77809","type":"mqtt-broker","name":"Jonas_MQTT_Server","broker":"192.168.10.24","port":"1883","clientid":"","usetls":false,"compatmode":true,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","closeTopic":"","closeQos":"0","closePayload":"","willTopic":"","willQos":"0","willPayload":""}]
Let me know.
Best regards