I have a couple input_datetime sensors feeding thermostat schedules that are nested in a group, and tapping the sensor as more_info does nothing. I have a couple input_number sliders and an input_select that work as intended. It will work as an entity card where each entity is defined, but i would prefer the popup to save space. Am i missing a shortcut?
Lovelace config:
- icon: mdi:air-conditioner
title: Thermostat
cards:
- type: entities
title: Climate
entities:
- sensor.hvac_1_temperature
- entity: climate.hvac_1_heating_1
icon: mdi:fire
- entity: climate.hvac_1_cooling_1
icon: mdi:snowflake
- type: glance
title: Schedule
column_width: calc(100% / 4)
show_state: false
entities:
- entity: group.hvac_morning
icon: mdi:weather-sunset
- entity: group.hvac_away
icon: mdi:home-outline
- entity: group.hvac_home
icon: mdi:home
- entity: group.hvac_sleep
icon: mdi:bed-empty
Group config:
hvac_morning:
name: Morning
control: hidden
entities:
- input_datetime.hvac_morning
- input_number.hvac_morning_heat_sp
- input_number.hvac_morning_cool_sp
- input_select.hvac_morning_fan_mode
hvac_away:
name: Leave
control: hidden
entities:
- input_datetime.hvac_away
- input_number.hvac_away_heat_sp
- input_number.hvac_away_cool_sp
- input_select.hvac_away_fan_mode
hvac_home:
name: Arrive
control: hidden
entities:
- input_datetime.hvac_home
- input_number.hvac_home_heat_sp
- input_number.hvac_home_cool_sp
- input_select.hvac_home_fan_mode
hvac_sleep:
name: Sleep
control: hidden
entities:
- input_datetime.hvac_sleep
- input_number.hvac_sleep_heat_sp
- input_number.hvac_sleep_cool_sp
- input_select.hvac_sleep_fan_mode