Information from a device does not appear in a dashboard

Hello,

I am trying to show information in a dashboard from a property device, but I do not understand why it does not appear.

If I write just text (in this example “I1”), it appears:

image
image

But when I write it to show a property device it does not work:


image
image

I have tried with all of these but it does not show the value:

{{Auto_VirtualTennisCourt_1.intensity}}
{{value.Auto_VirtualTennisCourt_1.intensity}}
{{value[“Auto_VirtualTennisCourt_1”].intensity}}
{{value[‘Auto_VirtualTennisCourt_1’].intensity}}
{{value[Auto_VirtualTennisCourt_1].intensity}}
{{val.Auto_VirtualTennisCourt_1.intensity}}

And the device has a value in that property:
image

Moreover, I have added a text/value widget and it works:
image

Thank you! :slight_smile:

Hello!

Finally, I ha solved it.

For solving it, I have added an HTML Widget, with this code snippet: <p>Value is: {{value}}</p>

And with the device properties:

So I can show how is the structure of the “value” and I can see this:

So if I want to show one of them, the structure is:

{{value[“Auto_VirtualTennisCourt_1.intensity”]}} :slight_smile:

1 Like