Click on device ->open other device?

Dear guys,
I have build a lovelace-floorplan with a small bubble that shows the temperature of a sensor. When i tap the sensor, it opens a diagram about the last hours…
BUT:
I want to tap that bubble, and want to set the temperature… how may I realize this. Thats my current code:

 entity: sensor.heizkorperthermostat_temperature
    style:
      top: 90%
      left: 33%
      color: '#000'
      border-radius: 50%
      text-align: center
      background-color: 'rgba(255, 255, 255, 0.3)'
      font-size: 11px
      font-weight: bold
      tap_action:
        action: service_data
        entity_id: climate.stube

sensorbubble: sensor.heizkorperthermostat_temperatur
device I want to show to regulate the heat: climate.stube

Hope you can help here

Browser-mod can change the pop-up card:

1 Like

Thanks
I have installed the mod, but it doesnt work for me. May you have a look where my mistake is?

  - type: state-label
    entity: sensor.yumis_heizung_temperature
    style:
      top: 93%
      left: 53%
      color: '#000'
      border-radius: 50%
      text-align: center
      background-color: 'rgba(255, 255, 255, 0.3)'
      font-size: 11px
      font-weight: bold
    tap_action: call-service
    service: browser_mod.popup
    data: 
    title: Heizung
    cards:
        - type: thermostat
          entity: climate.yumis_zimmer

I don’t use it. But your config does not look like the example:

service: browser_mod.popup
data:
  title: Popup example
  card:
    type: entities
    entities:
      - light.bed_light
      - light.kitchen_lights
      - light.ceiling_lights
  deviceID:
    - this
    - dashboard

Modified it a bit:

  - type: state-label
    entity: sensor.yumis_heizung_temperature
    style:
      top: 93%
      left: 53%
      color: '#000'
      border-radius: 50%
      text-align: center
      background-color: 'rgba(255, 255, 255, 0.3)'
      font-size: 11px
      font-weight: bold
    tap_action: call-service
    service: browser_mod.popup
    data:
      title: Heizung
      card:
        type: entities
        entities: climate.yumis_zimmer
      deviceID:
        - this
        - dashboard