MAX6675 Module + K Type Thermocouple Sensor Measure 1024°C Temperature

  • Internal integrated cold junction compensation circuit
  • Temperature signal may be transformed into a 12-bit digital format via a straightforward three serial SPI interface
  • circuits for embedded thermocouple break detection.
  • Inputs with high impedance differentials.
  • Voltage Difference (VDC): 3 to 5.5
  • Range of Temperature (°C): 0 to +1024
  • Compensation Range for Cold Junction (°C): -20 to +80

IBOTS's 10th Anniversary Sale

Hurry and get discounts on all Raspberry Products up to 20%

IBOTS1000

245.00

  • Pick up from the IBOTS Store

Free

  • Delivery Charges: Tamil Nadu

₹75 for parcels below 1 Kg and ₹100 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹75

  • Delivery Charges: Other South India

₹125 for parcels below 1 Kg and ₹175 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹125

  • Delivery Charges: North India

₹250 for parcels below 1 Kg and ₹325 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹250

  • Courier delivery

Our courier will deliver to the specified address

2-3 Days

Rs. 99

  • Warranty 1 year
  • Free Returns Policy

Payment Methods:

1. Order the Product and Specify the Delivery Method

2. You Will Receive an Order Confirmation Message

3. Wait for Your Order to Arrive

4. Pick up Your Order at The Checkout Area

Description

The Maxim MAX6675 K-Thermocouple to Digital Converter IC is used by this MAX6675 Module + K Type Thermocouple Sensor Measure 1024°C Temperature sensor to provide a digital serial interface (SPI compatible) compatible with microcontrollers for an accurate temperature compensated measurement of the supplied K-Type thermocouple sensor.

It provides temperature readings with a resolution of 0.25°C and a 12-bit range from 0°C to 1024°C (the maximum temperature of the supplied sensor is 450°C).

The thermocouples’ spade connectors can be connected to screw terminals, and an Arduino development board or other microcontroller can be accessed by a standard 5-pin 0.1′′ header.

The thermocouple sensor that is provided has a 4.5 mm diameter and a 6 mm threaded mounting bolt. The sensor is around 50 cm long overall, including the cable and spade connectors.

Features: 

  • Built-in cold junction compensating circuit on the inside
  • It is possible to convert a temperature signal to 12-bit digital
  • circuits for embedded thermocouple break detection
  • K-style thermometer
  • Basic serial output temperature for SPI
  • Inputs with high impedance differentials
  • Detection of thermocouple breaks
  • An ESD signal of 2000V
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

#include "max6675.h"

int ktcSO = 8;
int ktcCS = 9;
int ktcCLK = 10;

MAX6675 ktc(ktcCLK, ktcCS, ktcSO);

  
void setup() {
  Serial.begin(9600);
  // give the MAX a little time to settle
  delay(500);
}

void loop() {
  // basic readout test
  
   Serial.print("Deg C = "); 
   Serial.print(ktc.readCelsius());
   Serial.print("t Deg F = ");
   Serial.println(ktc.readFahrenheit());
 
   delay(500);
}

Customer Reviews

0 reviews
0
0
0
0
0

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.