pjjameso Posted November 21, 2022 Posted November 21, 2022 I posted a specific question in the Vue forum but have just a general question on node values. Im able to write condition statements that test the value in of a node in a program and then act upon that value. For the life of me Im unable to figure out how to use that value in a pushover message or to have it update a variable. My specific case is that I can see the value in polyglot and have tried the following but it just returns a blank value. ${sys.node.n001.141766_11.CPW} Pushover response is: node[n001] Thoughts?
MrBill Posted November 21, 2022 Posted November 21, 2022 It appears you added n001. when you shouldn't have. Try just ${sys.node.141766_11.CPW} I think the node server author should have included n001_ in the node name but didn't, meaning two different node servers could possibly generate this same node name.
pjjameso Posted November 21, 2022 Author Posted November 21, 2022 Still no go, Now returns: node[141766_11]
MrBill Posted November 21, 2022 Posted November 21, 2022 what does the admin console show as the node address at the top? Does that match?
Solution bpwwer Posted November 21, 2022 Solution Posted November 21, 2022 I think you almost had it right. Try ${sys.node.n001_141766_11.CPW} The address created by the node server has the "n<slot>_" pre-pended to it when added to the ISY 1
Recommended Posts