Hass.io -- Input_boolean incomplete list

Hi, I have used the same input_boolean list for a while… but just recently realized that some items are missing. There is no error when running the config check! … Any ideas ?

The last 3 items were showing before

# input_boolean:
  send_telgram_log:
    name: Send log to telegram
    initial: 'off'
    icon: mdi:speaker   
  follow_music:
    name: Follow Music
    initial: 'off'
    icon: mdi:music 
  ts_home:
    name: Daddy is home
    initial: 'off'
    icon: mdi:account
  mama_home:
    name: Simone is home
    initial: 'off'
    icon: mdi:account 
  oliver_home:
    name: Olli is home
    initial: 'off'
    icon: mdi:account 
  radio_ts:
    name: Radio TS Bedroom
    initial: 'off'
    icon: mdi:speaker 
  radio_kitchen:
    name: Radio Kitchen
    initial: 'off'
    icon: mdi:speaker 
  radio_house:
    name: Radio House
    initial: 'off'
    icon: mdi:speaker 
  radio_living:
    name: Radio Living room
    initial: 'off'
    icon: mdi:speaker 
  xxbackground_music:
    name: Play background music
    # initial: off
    icon: mdi:speaker
  xxbackyard_automation:
    name: Backyard automation
    # initial: off
    icon: mdi:speaker
  xxsonos_is_activ:
    name: Sonos / TV
    # initial: off
    icon: mdi:speaker  

Have you used them in other groups?

They will only show in the default group (Input Boolean) if unused elsewhere.

yeah … I’m aware of the grouping rules and have checked it … it looks like the items in question are not loaded at all … as said I even renamed them with xx at the beginning and they still don’t come up … adding other items did work … really strange

Below is the states table … the items are missing :face_with_raised_eyebrow:

Huh. That is odd. All I can think of is opening the config in an editor capable of showing special characters and checking you haven’t got a CRLF somewhere instead of just LF, or tabs instead of spaces. Though I think that should throw errors when checking your configuration.

What happens if you add a new one before the send_telgram_log input_boolean instead of at the end of the list?

1 Like

Yes, I was able to add new ones in … based on your feedback I reviewed the file but could not find any wrong/hidden characters … I ended up creating a new yaml file and it worked … there is visibly no different between the files :sunglasses:

thanks for the advise