Group Input Boolean

Hi Guys.

How can i group two input booleans?

I am looking to use the group in Node Red. If both Booleans are true then do X. Thats part im ok with but how can i group two booleans as it does not seem possible via the GUI

Thanks in advance

1 Like

Just came across this myself. I’m trying to migrate my old-style groups to the newer variants (Group - Home Assistant) and input_booleans don’t seem to be supported (yet?).

So using the old-style YAML configuration seems to be the only way:

group:
  mygroup:
    name: My Group
    entities:
      - input_boolean.one
      - input_boolean.two
      - input_boolean.three

Sebastian

6 Likes

Thanks mate