I have a moen Flo valve that also reports pressure and flow rate.
there isn’t a dashboard template for either of those variables.
How do I make a dashboard tile for a device reporting feature that doesn’t have a template?
I have a moen Flo valve that also reports pressure and flow rate.
there isn’t a dashboard template for either of those variables.
How do I make a dashboard tile for a device reporting feature that doesn’t have a template?
Normally you'd use the Attribute Template. (There are some custom options available in the community also but they generally have some slight amount of setup needed.)
Oh thank you!!! This was exactly what I was looking for.
The only problem with Attribute tiles is that the tiles will all have the name of the device, not the name of the attribute.
I use this bit of CSS to change the title of attribute tiles to match the attribute
/* remove title */
#tile-1 .tile-title { visibility: hidden; }
/* change title */
#tile-1 .tile-title:after { visibility: visible !important; position: absolute; left: 50%; top: 70%; transform: translate(-50%, -50%); overflow: hidden; white-space: nowrap !important; content: "New Title" !important; }
Just use your tile number and put in the title content you want for the tile, and paste it into Advanced - CSS on the dashboard.
Note: depending on the tile, you may need to play with the top: percent. It will change where the title is positioned at the bottom of the tile, if it is too high or too low.
Thanks for this tip….thar was going to be my next area to research.
I use that too...
/* Add text to the content */
#tile-1 .tile-primary:after{content: "psi"; font-size: 11px}