maattdiy / home-assistant-config

:house: My Home Assistant configuration and documentation. More info below.
118 stars 16 forks source link

Help - no tile shown #3

Closed martyouel closed 6 years ago

martyouel commented 6 years ago

Hi,

I was very impressed by the design of your HA GUI so I tried to reproduce one panel that I like, the Control Panel.

1) I downloaded the files from https://github.com/c727/home-assistant-tiles and put this in my configuration folder of HA /home/user/.homeassistant/www/custom_ui

2) I added this in my configuration.yaml

frontend: extra_html_url:

3) I added this in my customize.yaml

script.remote_control: custom_ui_state_card: state-card-tiles config: columns: 5 row_height: 75px column_width: 62px gap: 15px color: '#555B65' color_on: '#D5D619'

color_on: 'var(--primary-color)'

#color_on: '#262B38'
color_off: '#BBBEC2'
entities:            
  # TV
  - entity: script.lg_power
    caption: 
    icon: mdi:monitor
    column: 1
    row: 1
  - entity: script.lg_hdmi1
    icon: mdi:android
    column: 2
    row: 1
  - entity: script.lg_hdmi2
    icon: mdi:radio-tower
    column: 3
    row: 1
  - entity: script.amp_vol_down
    icon: mdi:mdi:volume-medium
    column: 4
    row: 1            
  - entity: script.amp_vol_up
    icon: mdi:mdi:volume-high
    column: 5
    row: 1

4) I added this to my script.yaml

remote_control: sequence:

5) I added this to my groups.yaml

remote_control: name: Control Panel entities:

I have no config error when I restart HA but I'm getting a "blank panel". Nothing is shown in my new panel named "Control Panel".

I have no clue what's my problem. If at least I would get an error it would help me...but nothing.

Any idea ?

thanks in advance