Wish List 0

Max6675 Module And K Type Thermocouple Sensor Measure 1024°C Temperature

Rs. 183.00 Rs. 211.00

-This MAX6675 Module + K Type Thermocouple Sensor Measure 1024°C Temperature sensor makes use of the Maxim MAX6675 K-Thermocouple to digital converter IC to provide a microcontroller compatible digital serial interface (SPI compatible) for giving an accurate temperature compensated measurement of the supplied K-Type thermocouple sensor.
-It has a 12-bit resolution providing temperature readings from 0°C to 1024°C (max temperature of the supplied sensor is 450°C) with a resolution of 0.25°C.
-Screw terminals allow for connection to the thermocouples spade connectors and a 5 pin standard 0.1″ header provides an interface to a microcontroller such as an Arduino development board.
-Supplied thermocouple sensor has a diameter of 4.5mm with a 6mm threaded mounting bolt.
-The total length of the sensor including cable and spade connectors is ~100cm.

Features:
-Internal integrated cold junction compensation circuit;
-Temperature signal can be converted into 12-bit digital
-Embedded thermocouple break detection circuitry.
-K-type temperature probe
-Simple SPI serial output temperature.
-High impedance differential inputs.
-Thermocouple break detection.
-2000V of ESD signal.
-Connect your Arduino to the Thermocouple Module
-Pretty simple stuff.   Keep the note about the thermocouple polarity in mind as you make these connections.
-Copy and Paste the Arduino MAX6675 Sketch:
-Sample Arduino MAX6675 Arduino Sketch

SPECIFICATIONS:
Model                                MAX6675
Operating Voltage(VDC)               3 to 5.5
Temperature Range(°C)                0 to +1024
Cold Junction Compensation Range(°C) -20 to +80
Resolution                           0.25°C
Shipment Weight                      0.105 kg
Shipment Dimensions                  6 × 5 × 3 cm

OVERVIEW:

-Internal integrated cold junction compensation circuit;

-With a simple three serial SPI interface;

-Temperature signal can be converted into 12-bit digital

-Embedded thermocouple break detection circuitry.

-High impedance differential inputs.

-Operating Voltage(VDC): 3 to 5.5

-Temperature Range(°C): 0 to +1024

-Cold Junction Compensation Range(°C): -20 to +80


PACKAGE INCLUDES:

1 PCS x Max6675 Module And K Type Thermocouple Sensor

1 PCS x K type Thermocouple.

//SOURCE CODE TAKEN VFROM BELOW LINK

//https://www.instructables.com/Arduino-and-Thermocouple-K-MAX6675/

#include <max6675.h>



// ThermoCouple

int thermo_gnd_pin = 45;

int thermo_vcc_pin = 47;

int thermo_so_pin  = 49;

int thermo_cs_pin  = 51;

int thermo_sck_pin = 53;

  

MAX6675 thermocouple(thermo_sck_pin, thermo_cs_pin, thermo_so_pin);

  

void setup() {

  Serial.begin(9600);


  pinMode(thermo_vcc_pin, OUTPUT); 

  pinMode(thermo_gnd_pin, OUTPUT); 

  digitalWrite(thermo_vcc_pin, HIGH);

  digitalWrite(thermo_gnd_pin, LOW);

}


void loop() {

  Serial.print("Temp: ");

  Serial.println(thermocouple.readCelsius());

  

  delay(1000);

}


15 days

Write a review

Please login or register to review