Nest Showing All Monitored Sensors with Code Set

Ive having an issue with nest component. Its is showing all the monitored sensors. Any was to just show certain ones?

See my config file:

nest:
client_id: [redacted]
client_secret: [redacted]

sensor:

  • platform: nest
    monitored_conditions:
    • ‘temperature’
    • ‘target’

See the first post in this thread for a how-to on posting your config on the forum. It preserves the formatting and helps with troubleshooting.

Not sure why they are showing. Your config looks correct (unless there is a formatting issue in your config) is there anything in your log showing an error with the nest sensor component?

You can always hide them using customize.

I know this is old, but to hide these, just edit your customize.yaml file and set the sensors you want hidden to hidden: true. You’ll need to check what the entity_id of Nest sensor is actually set as. All of mine are family_room_thermostat_nest but yours might just be thermostat_nest.

The following will hide the 5 “blue” sensors.

binary_sensor.thermostat_nest_online:
  hidden: true
  
binary_sensor.thermostat_nest_fan:
  hidden: true
  
binary_sensor.thermostat_nest_is_using_emergency_heat:
  hidden: true

binary_sensor.thermostat_nest_is_locked:
  hidden: true

binary_sensor.family_room_thermostat_nest_has_leaf:
  hidden: true

If you want to hide the red ones:

sensor.thermostat_nest_temperature:
  hidden: true

sensor.thermostat_nest_operation_mode:
  hidden: true

sensor.thermostat_nest_hvac_state:
  hidden: true

sensor.thermostat_nest_humidity:
  hidden: true

sensor.thermostat_nest_target:
  hidden: true