Thermocouple Temperature Sensor K-type Probe w/ MAX6675 Module
- Was RM38.00
-
RM18.00
- Product Code: Thermocouple Sensor Probe w/ MAX6675
- Availability: In Stock
This thermocouple is designed with fork terminals. Specially designed for digital thermometer which has k type sensor, suitable for measuring liquid or others high-temperature applications. The MAX6675 performs cold-junction compensation and digitizes the signal from a type-K thermocouple. The data is output in a 12-bit resolution, SPI™-compatible, read-only format.
Specification:
Package included :
1 x MAX6675 Module
1 x K Type Thermocouple Sensor Probe
The Maxim 6675 library for your Arduino if freely available at GitHub. You can get it here.
If you are unfamiliar with installing Arduino libraries, you can read this page.
Pretty simple stuff. Keep the note about the thermocouple polarity in mind as you make these connections.
// 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); }
Tags: Thermocouple, Temperature