TMP102 Temperature Sensor

The TMP102 Temperature sensor allows you to use your TMP102 (Sparkfun) sensors with ESPHome. The I²C Bus is required to be set up in your configuration for this sensor to work.

../../_images/tmp102-full.jpg

TMP102 Temperature Sensor.

../../_images/temperature.png
# Example configuration entry
sensor:
  - platform: tmp102
    name: "Living Room Temperature"
    update_interval: 60s

Configuration variables:

  • name (Required, string): The name for the temperature sensor.

  • update_interval (Optional, Time): The interval to check the sensor. Defaults to 60s.

  • address (Optional, int): The I²C address of the sensor. Defaults to 0x48. See I²C Addresses for more information.

  • id (Optional, ID): Set the ID of this sensor for use in lambdas.

  • All other options from Sensor.

See Also