Hide tile elements

Is there a easy way to hide elements in tiles when using custom DTH?

hide_tile_elements

k

if you wanted to change the dashboard view you would use the CLI.

smartthings presentation:device-config:generate YOUR DTH ID (FROM URL) HERE --dth -o=deviceConfig.json -j

This will give you a json file, open it with a text editor, then you can remove the states and actions from the dashboard view that you don’t want, save and then

smartthings presentation:device-config:create -j -I deviceConfig.json

this will give you a vid, you put this in the dth in the metadata as
vid: “YOUR VID GOES HERE”

and it should work.

1 Like