Arduino/Sensors/Temperature Sensors/Max6675

From msgwiki
Revision as of 04:46, 9 May 2021 by Walttheboss (talk | contribs) (→‎Code)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General

This is how you would read temperatures in an oven or other broad range temperature application.

Wiring


Code


#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(100);

} void loop() {

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



}