Also linked to this unanswered post:Problem accessing custom attributes in an MQTT plugin onPoll()
I am totally stuck on this and would really appreciate some guidance.
I cannot get at attribute contents within onPoll()
Eg I have a device 1002:0 (name is Housemodes) that has attributes scene0, scene1 etc. They are set to meaningful names and work correctly in any controls. eg binding Housemodes.scene3
console.log(plugin.Devices[“1002:0”].Attributes[3]) gives me “scene3” which is the name of the attribute - completely useless - i need its contents.
console.log(plugin.Devices[“1002:0”].scene3) gives me null
Is this even possible and if so - how?