frdrwrt / hute

Apache License 2.0
5 stars 0 forks source link

All about contactless temperature measurement #20

Open frdrwrt opened 3 years ago

frdrwrt commented 3 years ago

The idea is to use contactless temperature measurement, to determine wall temperature. For this usecase an Infrared temperature detector seems to be handy.

Mlx90614Esf

Let's collect all information to this topic in this issue.

frdrwrt commented 3 years ago

AZ-Delivery IR Sensor 9,99euro sold out :(

frdrwrt commented 3 years ago
frdrwrt commented 3 years ago

Pins image

frdrwrt commented 3 years ago

Minimal code example

#include <Wire.h>
#include <Adafruit_MLX90614.h>

Adafruit_MLX90614 mlx = Adafruit_MLX90614();

void setup() {
  Serial.begin(9600);
  mlx.begin();  
}

void loop() {
  Serial.print("Ambient = "); Serial.print(mlx.readAmbientTempC()); 
  Serial.print("*C\tObject = "); Serial.print(mlx.readObjectTempC()); Serial.println("*C");
}