Adjust sun elevation offset using input_number

I’m also a newcomer to Home Assistant (but not home automation) and the technique used to store globals feels like a kludge. Why? Because it uses UI widgets as global variables.

Need to store a boolean value? Create an input_boolean and store it there. Need to save a global numeric value? Create an input_number and use that. Don’t want these widgets visible in the UI? Use hidden: true in customize.yaml.

Anyway, like traveling to a foreign country, where “they do things differently there”, you just learn the local customs and roll with 'em.

They really aren’t UI widgets. The old frontend is so ‘tied’ to the back end that it appears as if they are UI widgets. Hopefully this switch to lovelace will show the separation a little better.

I would welcome that change. There are cases where you’d want to use an input_boolean as a global variable and NOT want it to be automagically exposed in the UI. Having the choice of exposing/not exposing it in the UI is a step forward.

That’s the point, everything will be hidden by default because you have to place it into lovelace to appear. Lovelace is opt-in, not like the frontend which is opt-out.

example w/ frontend:

  1. Make your input_number.
  2. Hide it.

Example w/ lovelace

  1. Make your input_number
  2. Show it.

not sure if this is fully correct tbh. You can make anything in plain old HA, but without configuring that in the views/groups they don’t show up.
That was the whole reason I/we made the orphans and ghost scripts, to find upgrouped but existing entities.

I find the way plain HA went about with dynamically created entities much preferable to Lovelace, which keeps showing those ugly yellow bars when entities aren’t initiated yet. regular Ha simply didn’t show these, until created/initiated.

Think media-players, think bluetooth trackers, even think the amazing group.set and group.set_visibility to create views on the fly, and kill them again…

Still have to find a way to have these media_players.xx only show when they exist. or when they don’t have a state yet…:

03
maybe there’s a state filter?

They show up on the main states page by default inside their respective ‘all_x’ groups, or as sensors on the top bar. Only way that don’t appear is if you override the default states page. Maybe that’s what you are doing?

EDIT: I guess it’s possible that some might not show up. Personally, I haven’t had that happen yet.

A yes, that is correct… forgot about that one. But that is so default, to have a custom default page, I don’t think many users still have the startup default page with all entities.

anyways, would you know a solution for having a media_player group/view with all media_players, and only have them appear when actually initialized? I tried a monster card

  - type: "custom:monster-card"
    card:
      title: Monster media players
      type: entities
    filter:
      include:
        - entity_id: media_player.*

but that only shows these little ‘entities’

04 while I am looking for the big media_control cards:

17

see: Lovelace - Media-control filter? - #7 by Mariusthvdb

I’m not sure. Monster card is like an entities card so it makes sense that it doesn’t display media players. Sounds like we just need glob for views.