royto / logbook-card

Logbook card for Home Assistant UI Lovelace
GNU General Public License v3.0
203 stars 9 forks source link

Add hidden_state function to Multiple entities Logbook Card #110

Closed yangrusen closed 8 months ago

yangrusen commented 8 months ago

I saw hidden_state in the Logbook Card and had tested it successfully. Now, I would like to apply it in the Multiple entities Logbook Card, but unfortunately, it does not seem to have this feature. Is it possible to add it to the Multiple entities Logbook Card as well? Thank you!

royto commented 8 months ago

It is supported. You can configured it per entity

title: Sun and Moon phase
entities:
  - entity: sun.sun
    custom_logs: true
    hidden_state: 
      - 'above_horizon' 
  - entity: sensor.moon_phase
type: custom:multiple-logbook-card
yangrusen commented 8 months ago

Thank you! I tested it and worked!