Display a value using OMRON Fins read multiple node

Need help with OMRON fins node. I want to display value from FINS read multiple node in a dashboard widget/gauge.

Below are the tag addresses.
W100.00,W100.01,W100.02,W100.03,W100.04,W100.05,W100.06,W100.07,W101.00,W101.01,W101.02,W101.03,W101.04,W101.05,W101.06,W101.07,W102.00,W102.01,W102.02

How should I give input? like this - msg.payload.W100.01 ? I tried but it's not working.

[{"id":"3fba64fb.1255ac","type":"FINS Read Multiple","z":"b1f5580f.0b59c8","name":"","connection":"18d34fc5.6dc1f","addressType":"str","address":"W100.00,W100.01,W100.02,W100.03,W100.04,W100.05,W100.06,W100.07,W101.00,W101.01,W101.02,W101.03,W101.04,W101.05,W101.06,W101.07,W102.00,W102.01,W102.02","msgPropertyType":"msg","msgProperty":"payload","outputFormatType":"signedkv","outputFormat":"","x":1740,"y":140,"wires":[["e9cce256.528bc"]]},{"id":"5b750fa8.befdd","type":"inject","z":"b1f5580f.0b59c8","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":1470,"y":140,"wires":[["3fba64fb.1255ac"]]},{"id":"e9cce256.528bc","type":"function","z":"b1f5580f.0b59c8","name":"","func":"msg.payload=msg.payload.W100.01;\nreturn msg;","outputs":1,"noerr":2,"initialize":"","finalize":"","libs":[],"x":2000,"y":140,"wires":[["b29ccd43.d6134"]]},{"id":"b29ccd43.d6134","type":"debug","z":"b1f5580f.0b59c8","name":"","active":true,"tosidebar":false,"console":false,"tostatus":true,"complete":"payload","targetType":"msg","statusVal":"payload","statusType":"auto","x":2150,"y":140,"wires":[]},{"id":"18d34fc5.6dc1f","type":"FINS Connection","name":"Holding furnace","host":"192.168.1.3","port":"9600","MODE":"","MODEType":"CS","protocol":"","protocolType":"udp","ICF":"0x80","DNA":"0","DA1":"0","DA2":"0","SNA":"0","SA1":"12","SA2":"0","autoConnect":true}]

Use copy path button...

There’s a great page in the docs that will explain how to use the debug panel to find the right path to any data item.

Pay particular attention to the part about the buttons that appear under your mouse pointer when you over hover a debug message property in the sidebar.

BX00Cy7yHi

https://nodered.org/docs/user-guide/messages

Tbh, you would be far better off using the standard read mode and requesting 3 words from W100 then use buffer-perser to convert the results to Booleans.

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