Icon configuration

Hi People.

I can’t seem to find the right configuration to personalize an ententy I added on configuration yaml.

So I have this

l

ight:
  - platform: xiaomi_miio
    name: Backyard Light
    host: "192.168.0.000"
    token: 66573078b8943ee254861bb0000000
    model: philips.light.bulb

And I’m assuming I’ll need to add icon: mdi:toilet

but can’t figure it out where.

Can you help me?

Try going to Configurations, then Customizations at the bottom and find the entity you wish to change. See if you can change the icon by selecting the attribute from the options.

1 Like

Hi there isn’t any option on configurations - Customizations :confused:

Solved

1 Like

You could do it in yaml too.

Add a line in your configuration.yaml (make sure it is not duplicate though)

homeassistant:
  customize: !include customize.yaml

Create the customize.yaml file and (for example) fill it with:

person.guy:
  icon: mdi:face

for you something like

light.backyard_light:
  icon: mdi:toilet
1 Like