Arduino Nano - MCP9805 Temperature Sensor Tutorial
by Dcube Tech Ventures in Circuits > Electronics
20 Views, 0 Favorites, 0 Comments
Arduino Nano - MCP9805 Temperature Sensor Tutorial
MCP9805 is a memory module digital temperature sensor. It is incorporated with user programmable registers that provide flexibility for temperature sensing applications. This sensor is designed to be incorporated in mobile platform memory module temperature sensor. Here is its demonstration with Arduino Nano.
What You Need..!!
Connections:
Take an I2C shield for Arduino Nano and gently push it over the pins of Nano.
Then connect the one end of I2C cable to MCP9803 sensor and the other end to the I2C shield.
Connections are shown in the picture above.
Code:
The Arduino code for MCP9805 can be downloaded from our GitHub repository-Dcube Store.
Here is the link for the same :
https://github.com/DcubeTechVentures/MCP9805
We include library Wire.h to facilitate the I2c communication of the sensor with the Arduino board.
You can also copy the code from here, it is given as follows:
// Distributed with a free-will license.
// Use it any way you want, profit or free, provided it fits in the licenses of its associated works.
// MCP9805
// This code is designed to work with the MCP9805_I2CS I2C Mini Module available from Dcube Store.
#include
// MCP9805 I2C address is 0x18(24)
#define Addr 0x18
void setup()
{
// Initialise I2C communication as MASTER
Wire.begin();
// Initialise Serial Communication, set baud rate = 9600
Serial.begin(9600);
// Start I2C Transmission
Wire.beginTransmission(Addr);
// Select configuration register
Wire.write(0x01);
// Continuous conversion mode, Power-up default
Wire.write(0x00);
Wire.write(0x00);
// Stop I2C Transmission
Wire.endTransmission();
// Start I2C Transmission
Wire.beginTransmission(Addr);
// Select resolution register
Wire.write(0x08);
// Resolution = +0.0625 / C
Wire.write(0x03);
// Stop I2C Transmission
Wire.endTransmission();
} void loop()
{
unsigned int data[2];
// Starts I2C communication
Wire.beginTransmission(Addr);
// Select data register
Wire.write(0x05);
// Stop I2C transmission
Wire.endTransmission();
// Request 2 bytes of data
Wire.requestFrom(Addr, 2);
// Read 2 bytes of data
// temp MSB, temp LSB
if(Wire.available() == 2)
{
data[0] = Wire.read();
data[1] = Wire.read();
}
// Convert the data to 13-bits
int temp = ((data[0] & 0x1F) * 256 + data[1]);
if(temp > 4095)
{
temp -= 8192;
}
float cTemp = temp * 0.0625;
float fTemp = cTemp * 1.8 + 32;
// Output data to serial monitor
Serial.print("Temperature in Celsius : ");
Serial.print(cTemp);
Serial.println(" C");
Serial.print("Temperature in Fahrenheit : ");
Serial.print(fTemp);
Serial.println(" F");
delay(1000);
}
Application:
MCP9805 can be incorporated in various systems which include dual in-line memory module (DIMM) temperature monitoring systems, personal computers and servers. Commonly, it can be used as a general purpose temperature sensor.