English
English
简体中文
日本語

Unit NCIR ESPHome Component

The Unit NCIR component reads non-contact temperature data using an infrared temperature sensor.

1. Component Overview

Item Information
Product Name Unit NCIR
SKU U028
Main Function Non-contact infrared temperature measurement
Communication Interface I2C
Default I2C Address 0x5A
ESPHome Component mlx90614
ESPHome Version Requirement /

2. Component Description

Including the Official Component

MLX90614 Sensor

Unit NCIR uses the mlx90614 component to provide ambient (ambient) and object (object) temperature entities over I2C.

sensor:
  - platform: mlx90614
    ambient:
      name: "Ambient Temperature"
    object:
      name: "Object Temperature"
    update_interval: 10s

3. Reference Example

yaml
1 2 3 4 5 6 7 8 9 10 11 12
i2c:
  sda: GPIOXX
  scl: GPIOXX
  scan: true

sensor:
  - platform: mlx90614
    ambient:
      name: Ambient
    object:
      name: Object
    update_interval: 10s

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

Page Tools
PDF
On This Page