Gravity__Digital_High_Temperature_Sensor__K-type__SKU_DFR0558-DFRobot

Introduction

PT100 is suitable for most of the temperature measurement below 400°C, but usually the temperature of the household natural gas stove can reach over 800°C, and the temperature of the pottery kiln or high-power electric furnace can be more than 1000°C. The K-type thermocouple are commonly used in such ultra-high temperature scenes.

The digital K-type high temperature sensor consists of a signal amplification conversion module and a sheathed K-type thermocouple probe. When the K-type thermocouple probe is placed near a high-temperature heat source, the probe generates a small voltage proportional to the temperature due to the thermoelectric effect. The module uses a MAX31855K dedicated chip to amplify this small voltage, convert it to digital signals, and compensate accordingly. The temperature readings can be read through Gravity I2C interface. The module can measure extremely wide temperature ranging from -270°C to 1372°C, the error from -200°C to 700°C is within ±2°C, and the error from 700°C to 1350°C is within ±4°C. The attached K-type thermocouple can measure up to 800 °C with error within ± 2.5 °C.

Features

Specifications

Signal Amplification Conversion Module

Armored K-Type Thermocouple Probe

Applications

Board Overview


Label Name Description
1 VCC Power VCC(3.3~5.5V)
2 GND Power GND
3 SCL I2C Clock Signal
4 SDA I2C Data Signal
5 BLUE- K type thermocouple negative electrode
6 RED+ K type thermocouple positive electrode

Arduino Tutorial

Requirements

Connection Diagram


Read Temperature

/*!
  * file ReadTemp.ino
  *
  * Connect MAX31855 to arduino via I2C interface,then download this example
  * @n open serial monitor to check the temperature.
  *
  * Copyright   [DFRobot](https://www.dfrobot.com), 2016
  * Copyright   GNU Lesser General Public License
  *
  * version  V0.1
  * date  2018-3-6
  */

#include <DFRobot_MAX31855.h>

DFRobot_MAX31855 max31855;

void setup(){
  /*Set baudrate*/
  Serial.begin(9600);
}

void loop(){
  int stat;
  /*Detect I2C device*/
  stat = max31855.scan();
  if(!stat){
    Serial.println("No I2C devices!");
  }
  else{
    /*Read Celsius*/
    float temp = max31855.readCelsius();
    Serial.print("Temperature:");
    Serial.print(temp);
    Serial.println(" ℃");
  }
  delay(1000);
}

Results


Raspberry Pi Tutorial

Requirements

Connection Diagram


Installation

1.Start the I2C interface of the Raspberry Pi. If it is already open, skip this step. Open Terminal, type the following command, and press Enter:

 pi@raspberrypi:~ $ sudo raspi-config

Then use the up and down keys to select “5 Interfacing Options” -> “P5 I2C” and press Enter to confirm “YES”. Reboot the Raspberry Pi.

2.Installing Python libraries and git (networking required). If it is already installed, skip this step. In the Terminal, type the following commands, and press Enter:

pi@raspberrypi:~ $ sudo apt-get update
pi@raspberrypi:~ $ sudo pip install wiringpi

3.Download the driver library and run it. In Terminal, type the following commands, and press Enter:

pi@raspberrypi:~ $ git clone https://github.com/DFRobot/DFRobot_MAX31855.git
pi@raspberrypi:~ $ cd ~/DFRobot_MAX31855/RaspberryPi
pi@raspberrypi:~/DFRobot_MAX31855/RaspberryPi $ python DFRobot_MAX31855.py

Read Temperature

pi@raspberrypi:~/DFRobot_MAX31855/RaspberryPi/python $ cd readTemp
pi@raspberrypi:~/DFRobot_MAX31855/RaspbeeryPi/python/readTemp $ python readTemp.py

Results


FAQ

For any questions, advice or cool ideas to share, please visit the DFRobot Forum.

More Documents

DFshopping_car1.png Get Gravity: I2C High Temperature Sensor (K-Type) from DFRobot Store or DFRobot Distributor.

Turn to the Top