Have you seen this? https://github.com/c727/home-assistant-tiles#configuration
Please tell me exactly what you don’t understand.
Yeah…I get the button config, but what’s going on with the script and inputs in your sample?
Custom state cards replace the original state card of an entity with something custom. Here we replace input_text.dummy_tiles
with the tiles.I use input_text
domain because it has no ‘more-info-card’ this means it doesn’t open another view if you click on it. Once this PR is merged the pointer cursor is also gone.
The example config is just a showcase of the functionality, for example how to add data to scripts.
Excellent - thanks so much!
I apreciated the new structure and features. Thanks. I linked to your project in my config info.
I just jumped in this, so right now I can help with prototypes, tests, examples…
@sentinel if help here is a my real config sample
This isn’t updated to the new version, I will do that soon.
https://github.com/maattdiy/home-assistant-config/blob/master/config/packages/buttons.yaml
I updated my config to the latest verion of tiles. Also added a color option per entity.
In the comments 2 little cool services that I found in the way: Generate icons for tiles, and Color Blender to create a color that play nice with the theme.
this is nice can you share your yaml config especially for the volume slider
In my case I use the native input_number with an automation.
Here is my package with the all the media player related config: https://github.com/maattdiy/home-assistant-config/blob/master/config/packages/mp_general.yaml
Thank you for sharing
my tiles are not showing up anymore i have no error on my log
Hey your setup looks good. Quick question, what weather component are you using? The details of the weather are pretty good and informative I would like something like that.
Do a Shift+F5 in your browser
Check for typos (if a button call a entity that do not exist this happen)
If you still need the log to figure out, set the logger to default: debug
thanks that was my problem some entities i tht dont exist were the problem
yes just make sure the entity assign to the tile is working
my problem was that i changed the entities name that is why did not show up in fronted
can u see if you find the error?
this is my GitHub. https://github.com/htcheroportugal/home-assistant-config/blob/master/packages/controlpanel.yaml
do you have this on your configuration.yaml
input_text:
command:
name: Button
dummy_tiles:
name: dummy
NO.
i can put that:
homeassistant:
customize:
input_text.dummy_tiles:
custom_ui_state_card: state-card-tiles
config:
columns: 3
column_width: 75px
row_height: 75px
entities:
- entity: script.play_radio
image: /local/ok.png
column: 2
row: 5
data: {value: ok}
frontend:
extra_html_url:
- /local/custom_ui/state-card-tiles.html
group:
g1:
name: Tiles showcase
entities:
- input_text.dummy_tiles
input_text:
command:
name: Button
dummy_tiles:
name: dummy
???