Comments on: Arduino: K-Type Thermocouple with MAX6675 Amplifier https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Fri, 21 Mar 2025 10:19:44 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: Sara Santos https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-1018570 Fri, 21 Mar 2025 10:19:44 +0000 https://randomnerdtutorials.com/?p=109255#comment-1018570 In reply to Larry Fostano.

That’s great.
You’re welcome.
Regards,
Sara

]]>
By: Larry Fostano https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-1018388 Thu, 20 Mar 2025 22:16:02 +0000 https://randomnerdtutorials.com/?p=109255#comment-1018388 In reply to Sara Santos.

Absolutely, I am using one currently, just put it together today actually. It reads temperature from my wood stove. It also displays it on a SSD OLED . Currently monitoring my output temperature and soon I it will control fan on off to eliminate cold air output.
Thanks to your team for the instructions and inspirations.

]]>
By: digiton https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-883087 Wed, 10 Jan 2024 08:17:59 +0000 https://randomnerdtutorials.com/?p=109255#comment-883087 How can I have temperature below 0 measured and presented. Now the measurement stops at 0. So a temperature below 0 is not presented

]]>
By: Michael Kimani https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-864764 Mon, 09 Oct 2023 08:54:17 +0000 https://randomnerdtutorials.com/?p=109255#comment-864764 How long does it take to detect and instantaneous 50 degrees celsius difference?

]]>
By: Dave Fischer https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-861573 Wed, 20 Sep 2023 11:39:36 +0000 https://randomnerdtutorials.com/?p=109255#comment-861573 In reply to Sara Santos.

Looks like there is a MAX 31855R for R type. But not widely available (looking on US eBay). One from India — https://roboindia.com/store/max-31855-r-type-module-thermocouple — pretty sure there are lots of examples on interfacing to the 31855R — so easy to modify one of your projects.

]]>
By: Sara Santos https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-861558 Wed, 20 Sep 2023 10:16:54 +0000 https://randomnerdtutorials.com/?p=109255#comment-861558 In reply to Sameera.

Hi.
Unfortunately, we don’t have any tutorials using that thermocouple.
Regards,
Sara

]]>
By: Sameera https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-861498 Wed, 20 Sep 2023 02:10:43 +0000 https://randomnerdtutorials.com/?p=109255#comment-861498 Hi sara
Do you have any cord for R type thomocupel by using K type module.
Because in sri lanka dont have to by R type module .thanks

]]>
By: Carlos https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-835241 Thu, 18 May 2023 18:07:02 +0000 https://randomnerdtutorials.com/?p=109255#comment-835241 Sorry, I am just a beginner on this, but is there not a mistake in this line

int thermoDO = 12;
int thermoCS = 15;
int thermoCLK = 14;

Thnaks

]]>
By: Rustam Efendi https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-832331 Fri, 28 Apr 2023 01:01:43 +0000 https://randomnerdtutorials.com/?p=109255#comment-832331 In reply to Bruno Hoegger.

Need Code for MAX31856

]]>
By: Dave F. https://randomnerdtutorials.com/arduino-k-type-thermocouple-max6675/#comment-804548 Wed, 21 Dec 2022 15:45:42 +0000 https://randomnerdtutorials.com/?p=109255#comment-804548 In reply to Dave F..

Got it to compile — just declared a string “s” and a float “tempC” and then —

tempC = thermocouple.readCelsius();
publisher("test_out/thermo", s+"Read (C): "+tempC);

]]>