Call climate entity details on sensor tap action

I got my new thermostat and I could integrate in my HA (climate.thermostat_1). Then I made a template sensor to get the current temperature from the climate entity’s attributes. Let’s call it sensor.thermostat_1_temp
I put this sensor in an entities glance card, so it shows the current temp. What I want if I tap on the temperature it should call the climate details with setting ability not the temperature history graph.
Can I make it somehow whith the tap_action? What should I call?

So I want this:

Instead of this:

when I tap on the current temperature.

The only option you have for the core integration is the more info box for the sensor you tapped on.

There is a custom integration that will allow you to design your own pop-up for the tap action:

1 Like

Edit: somehow now it works correctly. Thanks a lot!
Thanks for the info. I installed the Browser mod integration in HASS and put the code in a glance entities card. What I expected that when I tap on the temperature sensor value on my dashboard’s glance card, get the more info of the climate.zigbee_thermostat_test. But with the code below when I tap on the sensor value, nothing happens. Even the more info of the sensor doesn’t pop up.
My code:

type: glance
entities:
  - entity: binary_sensor.ablak_nappali
  - entity: sensor.thermostat_zigbee_current_temperature
    tap_action:
      action: call-service
      service: browser_mod.more_info
      service_data:
        entity_id: climate.zigbee_thermostat_test
2 Likes

It might have been a browser cache issue.