Scenes, Groups, etc,, all are not showing anywhere in the UI, but are being created in the appropriate files

I could really really use some help, ive been searching the forums, and google and the documentation for days. When i make a new scene in the scene editor, it saves it to my scenes.yaml file, I have scene: !include scenes.yaml in my main config file, but I can never see it in the UI, or as an entity, this is the same with groups, nomatter what I try.

i have

default_config:
  automation: !include automations.yaml
  script: !include scripts.yaml
  scene: !include scenes.yaml

in the config file, and when i open the files that are referenced, i see all of the scenes ive created.

Please help, ive been stuck here for days.

None of those includes should be indented under default config. Remove the indentation, config check and restart.

1 Like

Now im getting more errors - edit, this is the only error im down to now: extra keys not allowed @ data[‘default_config’]

homeassistant:
  name: Home
  latitude: 28.503885
  longitude: -81.223972
  elevation: 430
  unit_system: metric
  time_zone: America/Los_Angeles
  external_url: "https://a0y78o76hpo3tu3le5knnsrdaypzuoby.ui.nabu.casa/"
  internal_url: "http://homeassistant.local:8123"
  
  default_config:

  automation: !include automations.yaml
  script: !include scripts.yaml
  scene: !include scenes.yaml
  group: !include groups.yaml

  ifttt:
    key: "https://maker.ifttt.com/use/fduUabMXm5NLvevzjzhSfP2pQhekgdrAGdoDZBgzelZ"
  
  weather:
    - platform: openweathermap
      api_key: c2b3c786b198ebe2f72062c8d842c32a
      mode: freedaily
      latitude: 28.503885
      longitude: -81.223972

extra keys not allowed @ data[‘default_config’]

This is my groups.yaml file

- all_lights:
    name: All Lights
    entities:
      - light.fan_light_bed
      - light.fan_light_desk
      - light.fan_light_door
      - light.fan_light_window
      - light.mh_ledtest_closetlights
      - light.mh_ledtest_magic_home_1
      - light.mh_ledtest_magic_home_1_2
      - light.mh_ledtest_tasmota2
      - light.wled
      - light.wled_3
      - light.wled_4
      - light.wled_picture_desk
- fan_lights:
    name: "Fan Lights"
    entities:
      - light.fan_light_bed
      - light.fan_light_desk
      - light.fan_light_door
      - light.fan_light_window
- wled_strips:
    name: "WLED Strips"
    entities:
      - light.wled
      - light.wled_3
      - light.wled_4
      - light.wled_picture_desk
- magic_home_strips:
    name: "Magic Home Strips"
    entities:
      - light.mh_ledtest_closetlights
      - light.mh_ledtest_magic_home_1
      - light.mh_ledtest_magic_home_1_2
      - light.mh_ledtest_tasmota2
- outlets:
    name: "Outlets"
    entities:
      - switch.black_fan
      - switch.left_screen
      - switch.soldering_iron_outlet

You didn’t do what I said. You added indentation to the default config rather than removing the indentation of the others. All those things except the the ones under homeassistant should be hard up against the margin.

homeassistant:
  name: Home
  latitude: 28.503885
  longitude: -81.223972
  elevation: 430
  unit_system: metric
  time_zone: America/Los_Angeles
  external_url: "https://a0y78o76hpo3tu3le5knnsrdaypzuoby.ui.nabu.casa/"
  internal_url: "http://homeassistant.local:8123"
  
default_config:

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
group: !include groups.yaml

ifttt:
  key: "https://maker.ifttt.com/use/fduUabMXm5NLvevzjzhSfP2pQhekgdrAGdoDZBgzelZ"
  
weather:
  - platform: openweathermap
    api_key: c2b3c786b198ebe2f72062c8d842c32a
    mode: freedaily

Same for your groups file. Remove the - from the front of your group names. They should be hard up against the margin.

OK, does everything look formatted ok here?


homeassistant:
  name: Home
  latitude: 28.503885
  longitude: -81.223972
  elevation: 430
  unit_system: metric
  time_zone: America/Los_Angeles
  external_url: "https://a0y78o76hpo3tu3le5knnsrdaypzuoby.ui.nabu.casa/"
  internal_url: "http://homeassistant.local:8123"
  
default_config:

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
group: !include groups.yaml

ifttt:
  key: "https://maker.ifttt.com/use/fduUabMXm5NLvevzjzhSfP2pQhekgdrAGdoDZBgzelZ"
  
weather:
  - platform: openweathermap
    api_key: c2b3c786b198ebe2f72062c8d842c32a
    mode: freedaily
    latitude: 28.503885
    longitude: -81.223972

and groups

all_lights:
  name: All Lights
  entities:
    - light.fan_light_bed
    - light.fan_light_desk
    - light.fan_light_door
    - light.fan_light_window
    - light.mh_ledtest_closetlights
    - light.mh_ledtest_magic_home_1
    - light.mh_ledtest_magic_home_1_2
    - light.mh_ledtest_tasmota2
    - light.wled
    - light.wled_3
    - light.wled_4
    - light.wled_picture_desk
fan_lights:
  name: "Fan Lights"
  entities:
    - light.fan_light_bed
    - light.fan_light_desk
    - light.fan_light_door
    - light.fan_light_window
wled_strips:
  name: "WLED Strips"
  entities:
    - light.wled
    - light.wled_3
    - light.wled_4
    - light.wled_picture_desk
magic_home_strips:
  name: "Magic Home Strips"
  entities:
    - light.mh_ledtest_closetlights
    - light.mh_ledtest_magic_home_1
    - light.mh_ledtest_magic_home_1_2
    - light.mh_ledtest_tasmota2
outlets:
  name: "Outlets"
  entities:
    - switch.black_fan
    - switch.left_screen
    - switch.soldering_iron_outlet

EDIT - re-read your answer better?

Groups is correct. configuring.yaml is not. See the example In my post above.

Edit: yes like that.

1 Like

omg thank you so much, you rock. now for scenes, it is ok with the -??

- id: 1594616044542
  name: Fan Lights Relax One
  entities:
    light.fan_light_bed:
      brightness: 84
      color_temp: 153
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Bed
      hs_color:
      - 45
      - 100
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 191
      - 0
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.527
      - 0.447
    light.fan_light_desk:
      brightness: 156
      color_temp: 175
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Desk
      hs_color:
      - 0
      - 100
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 0
      - 0
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.701
      - 0.299
    light.fan_light_door:
      brightness: 219
      color_temp: 153
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Door
      hs_color:
      - 14.521
      - 100
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 61
      - 0
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.678
      - 0.318
    light.fan_light_window:
      brightness: 153
      color_temp: 153
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Window
      hs_color:
      - 14.902
      - 100
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 63
      - 0
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.677
      - 0.319
    sensor.fan_light_desk_status:
      BootCount: 15
      BuildDateTime: '2019-12-30T19:07:34'
      Core: '2_6_1'
      IPAddress: 10.0.0.3
      LoadAvg: 99
      Module: Fan Light Desk
      MqttCount: 5
      RSSI: '100'
      RestartReason: Software/System restart
      SDK: 2.2.2-dev(38a443e)
      SaveCount: 130
      Uptime: 0T04:35:14
      Version: 8.1.0.2(tasmota)
      WiFi Downtime: 0T00:00:07
      WiFi LinkCount: 1
      friendly_name: Fan Light Desk status
      icon: mdi:information-outline
      state: '100'
      unit_of_measurement: ' '
- id: 1594640883129
  name: Bright Lights
  entities:
    light.fan_light_bed:
      brightness: 235
      color_temp: 491
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Bed
      hs_color:
      - 0
      - 0
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 255
      - 255
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.323
      - 0.329
    light.fan_light_desk:
      brightness: 255
      color_temp: 488
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Desk
      hs_color:
      - 0
      - 0
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 255
      - 255
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.323
      - 0.329
    light.fan_light_door:
      brightness: 255
      color_temp: 487
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Door
      hs_color:
      - 0
      - 0
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 255
      - 255
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.323
      - 0.329
    light.fan_light_window:
      brightness: 245
      color_temp: 491
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Window
      hs_color:
      - 0
      - 0
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 255
      - 255
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.323
      - 0.329
    light.mh_ledtest_magic_home_1:
      brightness: 237
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: MH LEDtest Magic Home 1
      hs_color:
      - 60
      - 100
      rgb_color:
      - 255
      - 255
      - 0
      state: 'on'
      supported_features: 21
      xy_color:
      - 0.444
      - 0.517
    light.mh_ledtest_tasmota2:
      brightness: 245
      friendly_name: MH LED WW
      state: 'on'
      supported_features: 129
      white_value: 245
    light.wled:
      brightness: 247
      effect: Solid
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: WLED Door
      hs_color:
      - 60
      - 57.255
      icon: mdi:led-strip-variant
      intensity: 128
      max_mireds: 500
      min_mireds: 153
      palette: Default
      playlist:
      preset:
      reverse: false
      rgb_color:
      - 255
      - 255
      - 108
      speed: 128
      state: 'on'
      supported_features: 55
      xy_color:
      - 0.417
      - 0.474
    light.wled_2:
      brightness: 247
      effect: Solid
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: WLED 144
      hs_color:
      - 60
      - 57.647
      icon: mdi:led-strip-variant
      intensity: 128
      max_mireds: 500
      min_mireds: 153
      palette: Default
      playlist:
      preset:
      reverse: false
      rgb_color:
      - 255
      - 255
      - 108
      speed: 128
      state: 'on'
      supported_features: 183
      white_value: 255
      xy_color:
      - 0.417
      - 0.474
    light.wled_3:
      brightness: 128
      effect: Solid
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: Under Desk
      hs_color:
      - 37.647
      - 100
      icon: mdi:led-strip-variant
      intensity: 128
      max_mireds: 500
      min_mireds: 153
      palette: Default
      playlist:
      preset:
      reverse: false
      rgb_color:
      - 255
      - 159
      - 0
      speed: 128
      state: 'on'
      supported_features: 55
      xy_color:
      - 0.57
      - 0.41
    switch.soldering_iron_outlet:
      friendly_name: Soldering Iron Outlet
      state: 'on'
    switch.wled_nightlight:
      duration: 60
      fade: true
      friendly_name: WLED Door Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_nightlight_2:
      duration: 60
      fade: true
      friendly_name: WLED 144 Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_nightlight_3:
      duration: 60
      fade: true
      friendly_name: Under Desk Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_sync_receive:
      friendly_name: WLED Door Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_receive_2:
      friendly_name: WLED 144 Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_receive_3:
      friendly_name: Under Desk Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_send:
      friendly_name: WLED Door Sync Send
      icon: mdi:upload-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_send_2:
      friendly_name: WLED 144 Sync Send
      icon: mdi:upload-network-outline
      state: 'off'
      udp_port: 21324
    switch.wled_sync_send_3:
      friendly_name: Under Desk Sync Send
      icon: mdi:upload-network-outline
      state: 'off'
      udp_port: 21324
- id: '1595241950320'
  name: Relax Level 3
  entities:
    light.fan_light_bed:
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Bed
      max_mireds: 500
      min_mireds: 153
      state: 'off'
      supported_features: 23
    light.fan_light_desk:
      brightness: 120
      color_temp: 153
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Desk
      hs_color:
      - 0
      - 100
      max_mireds: 500
      min_mireds: 153
      rgb_color:
      - 255
      - 0
      - 0
      state: 'on'
      supported_features: 23
      xy_color:
      - 0.701
      - 0.299
    light.fan_light_door:
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Door
      max_mireds: 500
      min_mireds: 153
      state: 'off'
      supported_features: 23
    light.fan_light_window:
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: Fan Light Window
      max_mireds: 500
      min_mireds: 153
      state: 'off'
      supported_features: 23
    light.mh_ledtest_closetlights:
      friendly_name: MagicHome 2 WW
      state: unavailable
      supported_features: 129
    light.mh_ledtest_magic_home_1:
      brightness: 87
      effect: '0'
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: MH LEDtest Magic Home 1
      hs_color:
      - 195.2
      - 86.207
      rgb_color:
      - 35
      - 199
      - 255
      state: 'on'
      supported_features: 21
      xy_color:
      - 0.152
      - 0.252
    light.mh_ledtest_magic_home_1_2:
      effect_list:
      - '0'
      - '1'
      - '2'
      - '3'
      - '4'
      friendly_name: MagicHome 2 Magic Home 2
      state: unavailable
      supported_features: 21
    light.mh_ledtest_tasmota2:
      friendly_name: MH LED WW
      state: 'off'
      supported_features: 129
    light.wled:
      brightness: 65
      effect: Noise 2
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: WLED Door
      hs_color:
      - 249.231
      - 5.098
      icon: mdi:led-strip-variant
      intensity: 117
      max_mireds: 500
      min_mireds: 153
      palette: Splash
      playlist:
      preset: 7
      reverse: false
      rgb_color:
      - 244
      - 242
      - 255
      speed: 85
      state: 'on'
      supported_features: 55
      xy_color:
      - 0.316
      - 0.315
    light.wled_3:
      brightness: 65
      effect: Noise 2
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: Under Desk
      hs_color:
      - 249.231
      - 5.098
      icon: mdi:led-strip-variant
      intensity: 117
      max_mireds: 500
      min_mireds: 153
      palette: Splash
      playlist:
      preset:
      reverse: false
      rgb_color:
      - 244
      - 242
      - 255
      speed: 85
      state: 'on'
      supported_features: 55
      xy_color:
      - 0.316
      - 0.315
    light.wled_picture_desk:
      brightness: 102
      effect: Noise 2
      effect_list:
      - Android
      - Blink
      - Blink Rainbow
      - Bouncing Balls
      - Bpm
      - Breathe
      - Candle
      - Candle Multi
      - Chase
      - Chase Flash
      - Chase Flash Rnd
      - Chase Rainbow
      - Chase Random
      - Circus
      - Colorful
      - Colorloop
      - Colortwinkles
      - Colorwaves
      - Dissolve
      - Dissolve Rnd
      - Drip
      - Dynamic
      - Fade
      - Fill Noise
      - Fire 2012
      - Fire Flicker
      - Fireworks
      - Fireworks 1D
      - Fireworks Starburst
      - Glitter
      - Gradient
      - Halloween
      - Halloween Eyes
      - Heartbeat
      - ICU
      - Juggle
      - Lake
      - Lighthouse
      - Lightning
      - Loading
      - Merry Christmas
      - Meteor
      - Meteor Smooth
      - Multi Comet
      - Noise 1
      - Noise 2
      - Noise 3
      - Noise 4
      - Oscillate
      - Pacifica
      - Palette
      - Percent
      - Plasma
      - Police
      - Police All
      - Popcorn
      - Pride 2015
      - Railway
      - Rain
      - Rainbow
      - Rainbow Runner
      - Random Colors
      - Red & Blue
      - Ripple
      - Ripple Rainbow
      - Running
      - Running 2
      - Saw
      - Scan
      - Scan Dual
      - Scanner
      - Scanner Dual
      - Sinelon
      - Sinelon Dual
      - Sinelon Rainbow
      - Solid
      - Solid Pattern
      - Solid Pattern Tri
      - Sparkle
      - Sparkle Dark
      - Sparkle+
      - Spots
      - Spots Fade
      - Stream
      - Stream 2
      - Strobe
      - Strobe Mega
      - Strobe Rainbow
      - Sweep
      - Sweep Random
      - Theater
      - Theater Rainbow
      - Traffic Light
      - Tri Chase
      - Tri Fade
      - Tri Wipe
      - Twinkle
      - Twinklecat
      - Twinklefox
      - Two Areas
      - Two Dots
      - Wipe
      - Wipe Random
      friendly_name: WLED-Picture-Desk
      hs_color:
      - 249.231
      - 5.098
      icon: mdi:led-strip-variant
      intensity: 117
      max_mireds: 500
      min_mireds: 153
      palette: Splash
      playlist:
      preset:
      reverse: false
      rgb_color:
      - 244
      - 242
      - 255
      speed: 85
      state: 'on'
      supported_features: 183
      white_value: 0
      xy_color:
      - 0.316
      - 0.315
    media_player.jay_s_bedroom_speaker:
      app_id: 89EA58C1
      app_name: Bluetooth Audio
      entity_picture_local:
      friendly_name: Jay's Bedroom speaker
      is_volume_muted: false
      media_content_id: Bluetooth Audio
      media_content_type: music
      media_position: 0
      media_position_updated_at: '2020-07-20T10:39:22.713987+00:00'
      media_title: Bluetooth Audio
      state: paused
      supported_features: 21389
      volume_level: 0.20000000298023224
    switch.black_fan:
      friendly_name: Black Fan
      state: 'on'
    switch.left_screen:
      friendly_name: Monitors
      state: 'on'
    switch.soldering_iron_outlet:
      friendly_name: Desk Outlet
      state: 'on'
    switch.wled_nightlight:
      duration: 60
      fade: true
      friendly_name: WLED Door Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_nightlight_3:
      duration: 60
      fade: true
      friendly_name: Under Desk Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_picture_desk_nightlight:
      duration: 60
      fade: true
      friendly_name: WLED-Picture-Desk Nightlight
      icon: mdi:weather-night
      state: 'off'
      target_brightness: 0
    switch.wled_picture_desk_sync_receive:
      friendly_name: WLED-Picture-Desk Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 51996
    switch.wled_picture_desk_sync_send:
      friendly_name: WLED-Picture-Desk Sync Send
      icon: mdi:upload-network-outline
      state: 'off'
      udp_port: 51996
    switch.wled_sync_receive:
      friendly_name: WLED Door Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_receive_3:
      friendly_name: Under Desk Sync Receive
      icon: mdi:download-network-outline
      state: 'on'
      udp_port: 51996
    switch.wled_sync_send:
      friendly_name: WLED Door Sync Send
      icon: mdi:upload-network-outline
      state: 'on'
      udp_port: 21324
    switch.wled_sync_send_3:
      friendly_name: Under Desk Sync Send
      icon: mdi:upload-network-outline
      state: 'off'
      udp_port: 51996

im guessing yes because they are all appearing now and all popping up on my alexa app etc…

edit-hopefully formatting fixed

Yes scenes.yaml is good.

Please read point 11 here about formatting posts rather than using screenshots: How to help us help you - or How to ask a good question

Done, i think i did it correctly.

Now where can i find my groups and reference them in scenes and automations? do i need to do a full restart?

After editing the configuration.yaml file yes you need to do a full restart.

All your entities can be found in developer tools / state menu. You may have to enable advanced mode for that to show up (this setting is in your profile, click the initials bottom left).

Groups aren’t yet editable from the GUI.

Scenes are, Configuration / Scenes menu.

1 Like

Thank you so much, ive been trying to figure it out on my own for so long, you are a great help!!

1 Like