Create Scene from entities via UI

Hi, I’m really new in the use of Home Assistant and I’m playing with Virtual components from Home Assistant https://github.com/twrecked/hass-virtual.
I’m trying to create an Scene from the UI but I cannot select the entity or entities which I want to include in the Scene I just can choose a device.

I have been able to create, let’s call them “entity scenes” editing configuration.yaml file.

scene:
  - name: Standard
    icon: "mdi:flowe-tulip"
    entities:
      light.virtual_celing_center_light:
        state: "on"
        color_mode: "white"
        brightness: 125
      light.virtual_led_back_wall:
        state: "off"
        color_mode: "xy"
        xy_color: [0.22, 0.66]

and, of course, I’m able to activate the scene. Do you know if it is possible to create this same kind of scenes from entities, or group of entities, via UI?

1 Like