Dashboard LCD emulator

Hello,
I would like to know if there is a conversion script or a conbtrib node to reproduce LCD20x4-I2C visual content on dashboard, using the same function that I use to run the physical LCD screen.

msg.payload = {
	msgs:[
		{
			msg: "Nanay:        " + String(global.get("NanayTemp")) + " C",
			pos:1,
			center: false
		},
		{
			msg: "Putumayo:     " + String(global.get("PutumayoTemp")) + " C",
			pos:1,
			center: false
		},
		{
			msg: "Uatuma:       " + String(global.get("UatumaTemp")) + " C",
			pos:1,
			center: false
		},
		{
			msg: "Amazon:       " + String(global.get("AmazonTemp")) + " C",
			pos:1,
			center: false
		}
	]
};
return msg;

You might find some ideas in this discussion about train departures boards, including an LCD style font.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.