Hello, I have a Non-contact IR Sensor Module which features the MLX90614 sensor, I have connected it to my arduino nano with the following pins:
5v <- VIN
GND <- GND
SCL <- A5
SDA <- A4
When I upload the code, my serial port outputs 2000 Degress C and 2700 Degress F.
I was wondering if their is an issue with software ie code, or if my sensor is just broken.
DataSheet (https://www.jaycar.com.au/medias/sys_master/images/9292328894494/XC3704-dataSheetMain.pdf)
Manual (https://www.jaycar.com.au/medias/sys_master/images/9292328861726/XC3704-manualMain.pdf)
I have used the exmaple code:
/***************************************************
This is a library example for the MLX90614 Temp Sensor
Designed specifically to work with the MLX90614 sensors in the
adafruit shop
----> https://www.adafruit.com/products/1747 3V version
----> https://www.adafruit.com/products/1748 5V version
These sensors use I2C to communicate, 2 pins are required to
interface
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
Written by Limor Fried/Ladyada for Adafruit Industries.
BSD license, all text above must be included in any redistribution
****************************************************/
#include <Wire.h>
#include <Adafruit_MLX90614.h>
Adafruit_MLX90614 mlx = Adafruit_MLX90614();
void setup() {
Serial.begin(9600);
Serial.println("Adafruit MLX90614 test");
mlx.begin();
}
void loop() {
Serial.print("Ambient = "); Serial.print(mlx.readAmbientTempC());
Serial.print("*C\tObject = "); Serial.print(mlx.readObjectTempC()); Serial.println("*C");
Serial.print("Ambient = "); Serial.print(mlx.readAmbientTempF());
Serial.print("*F\tObject = "); Serial.print(mlx.readObjectTempF()); Serial.println("*F");
Serial.println();
delay(500);
}