Max6675 Module And K Type Thermocouple Sensor Measure 1024°C Temperature
Rs. 138.00 Rs. 159.00
- Brand: https://www.maximintegrated.com/en/products/sensors/MAX6675.html
- Product Code: SEN-TEMP
- SKU -
- Availability: In Stock
- Price in reward points: 3
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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.
https://www.maximintegrated.com/en/products/sensors/MAX6675.html
//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