Scene configuration

Hi, all.
There is a question concerning scene configuration.
When I create scene I can not change or delete the word “scene” from frontend:

I didn’ find any information by this at https://home-assistant.io/components/scene.
I suppose may be I’m doing something wrong, please point me way to do it right.
Thx.

Have you tried adding the scene to a group?

Also, looks like you’ve got the default home, where every item is added automatically (so you get generated card titles).

1 Like

Yes, I have tried it. Here is content of my config file: (Sorry I didn’t find markup to yaml at forum to correctly format the configuration)

homeassistant:
name: Home
#latitude:
#longitude:
#elevation:
unit_system: metric
#time_zone:
customize:
sensor.fake_sensor_0_7:
friendly_name: ‘Fake Temp’

switch.fake_sensor_0_8:
  friendly_name: 'Fake Led 1' 

switch.fake_sensor_0_9:
  friendly_name: 'Fake Led 2'

scene.leds:
  friendly_name: 'Leds'

frontend:

http:

history:

logbook:

mysensors:
gateways:
- device: ‘/dev/ttyACM0’
baud_rate: 115200
debug: true
persistence: false
optimistic: false

group:
default_view:
view: yes
entities:
- group.sensorsgroup
- group.switchesgroup

cameras:
name: Cameras
entities:
- camera.ffmpeg
view: yes

sensorsgroup:
name: “Sensors”
entities:
- sensor.fake_sensor_0_7

switchesgroup:
name: “Switches”
entities:
- switch.fake_sensor_0_8
- switch.fake_sensor_0_9

ledsgroup:
name: ‘MyCustomScene’
view: true
entities:
- scene.leds

camera:

  • platform: ffmpeg
    input: /mnt/drive_e/output.mkv

scene:

  • name: leds
    entities:
    switch.fake_sensor_0_8: on

Anyway in this configuration it looks the same:

Use preformatted text when posting YAML, otherwise we can’t tell if you’ve got formatting issues.

It does not look like you have tried to make a group with you scene?

You have your ledsgroup set up as a view and instead of a group, you are showing only the entity “scene.leds”, so it shows as a card and the card gets the default title of the platform type.

To change this, create a group and name it whatever you like. Let’s call it “mynewgroup” for this example. Then add your “scene.leds” entity to that group.

Then go your ledsgroup and replace “- scene.leds” with “- group.mynewgroup” (or whatever you called it). And then restart; you should see the change and have a little better understanding on how groups and naming work.

Ok, now it works as I need and it’s clear to me how it’s working.
Thanks a lot for answers.