MAX6675 Temperature Sensor with K Type Thermocouple for Arduino Projects
A dd an accurate Temperature sensor to your arduino
SKU: TA0396
$12.95
RRP $29.95
Sold Out
MAX6675 Temperature Sensor with K Type Thermocouple for Arduino Projects
Add an accurate Temperature sensor to your Arduino
This MAX6675 Thermocouple Temperature Module is a digital converter that has a range of 0°C up to 1024°C with the supplied K-Type thermocouple.
Simple SPI serial output temperature.
Chip cold junction compensation.
High impedance differential inputs.
Thermocouple break detection.
2000V of ESD signal.
Specification:
Temperature range: -20 ° C - 1024° C.
Temperature resolution: 0.25 ° C.
Wide operating voltage range: 3. 0 ~ 5. 5V
Operating current: 50mA.
Operating temperature range: -20 ° C~ 85 ℃.
Module interface: GND VCC SCK CS SO
Supply voltage: 3 ~ 5V DC
Module size: 15mm * 25mm
Package includes:
1 x MAX6675 Module
1 x Thermocouple
Wiring:
GND = Connect to system ground. This ground needs to be in common with the MCU.
VCC = Connect to 3.0 – 5.5V. Typically connected to MCU operating power.
SCK = Serial Clock Input. Connect to any digital pin on MCU.
CS = Chip Select. Connect to any digital pin on MCU.
SO = Serial Data Output. Connect to any digital pin on MCU.
Code
/*MAX 6675 Thermocouple Module Test
Basic code for reading the MAX6675 chip via SPI interface
Requires installation of 'max6675.h' library
*/
#include "max6675.h"
int const SO_PIN = 8; // Can use any digital pins for these assignments
int const CS_PIN = 9;
int const SCK_PIN = 10;
MAX6675 ktc(SCK_PIN, CS_PIN, SO_PIN); // Create an instance of MAX6675 control
//===============================================================================
// Initialization
//===============================================================================
void setup() {
Serial.begin(9600); // Set comm speed for debug window messages
delay(1000); // give the MAX6675 a little time to settle
}
//===============================================================================
// Main
//===============================================================================
void loop() {
// Read and print the values from the module in both degrees C and F
Serial.print("Deg C = ");
Serial.print(ktc.readCelsius());
Serial.print("t Deg F = ");
Serial.println(ktc.readFahrenheit());
delay(1000);
}
3 Month Warranty
SKU | TA0396 |
Barcode # | 9351634021109 |
Brand | iduino |
Shipping Weight | 0.0200kg |
Shipping Width | 0.140m |
Shipping Height | 0.020m |
Shipping Length | 0.090m |
Shipping Cubic | 0.000252000m3 |
Unit Of Measure | ea |
Be The First To Review This Product!
Help other Aus Electronics Direct users shop smarter by writing reviews for products you have purchased.