#include "max6675.h"
int termoCLK = 9;
int termoSO = 10;
int termoCS = 11;
MAX6675 thermocouple(termoCLK, termoSO, termoCS);
void setup() {
Serial.begin(9600);
Serial.print("MAX6675 Probando");
delay(1000);
}
void loop() {
Serial.print("C = ");
Serial.println(thermocouple.readCelsius());
Serial.print("F ");
Serial.println(thermocouple.readFahrenheit());
delay(1000);
}