engrpandaece
Published © MIT

Wireless IR Temperature Scanner

Wirelessly Scan your temperature viewed using mobile phone thru Bluetooth. Place the device and view the temperature from a distance.

IntermediateFull instructions provided5 hours11,722
Wireless IR Temperature Scanner

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
HC-06 Bluetooth Module
×1
MLX90614 Contactless Temperature Sensor Module
×1
9V battery (generic)
9V battery (generic)
×1
9V Battery Clip
9V Battery Clip
×1
terminal block
×1
Rocker Switch, Non Illuminated
Rocker Switch, Non Illuminated
×1
Universal pcb
×1
Some stranded wires
×1
pin header female
×1

Software apps and online services

Arduino IDE
Arduino IDE
App Wireless IR Temperature Scanner plus ULTRA

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free

Story

Read more

Code

Complete Code

C/C++
/***************************************************
  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(mlx.readAmbientTempC());
  Serial.print("|");
  Serial.print(mlx.readObjectTempC());
  Serial.print("|");
  delay(1000);
}

Credits

engrpandaece

engrpandaece

1 project • 7 followers
~just a simple guy who loves panda and building stuff

Comments