pdf-icon

Unit KMeter-ISO Home Assistant Integration

Unit KMeter-ISO is an integrated K-type thermocouple sensor unit that combines sensing, isolation, and communication. It uses an STM32F030 + MAX31855KASA 14-bit thermocouple digital conversion chipset to achieve high-precision temperature acquisition and conversion.

Note
Because the Unit KMeter-ISO is only a standalone sensor platform, an additional host device (such as Atom series, Stamp series, Stick series, Core/Basic series, etc.) is required to integrate it into Home Assistant

Get the latest configuration from ESPHome

Configure the sensor

You need to enable the I²C component in your ESPHome configuration:

yaml
1 2 3 4 5
# Example configuration entry for ESP32
i2c:
  sda: GPIOXX
  scl: GPIOXX
  scan: true

The GPIO pins here will vary depending on the host device used. For example, when using Atom Lite as the host:

yaml
1 2 3 4
# I2C Bus on Grove Port (HY2.0-4P)
i2c:
  sda: GPIO26
  scl: GPIO32

Unit KMeterISO configuration example

yaml
1 2 3 4 5 6 7
sensor:
  - platform: kmeteriso
    temperature:
      name: "KMeterISO Temperature"
    internal_temperature:
      name: "Internal Temperature"
    update_interval: 10s

Add the sensor to Home Assistant

After adding it to the Dashboard, you can view the sensor data in Home Assistant

On This Page