You can try to use the Blynk_Teensy
library, you can use for Mega2560 just to see if the issue fixed (as similar issue happened to Teensy 4.0)
Then just replace in the code
//#include <BlynkSimpleShieldEsp8266.h>
#include <BlynkSimpleShieldEsp8266_Teensy.h>
There are also some typo errors in the call, not readFarenheit()
, but readFahrenheit()
.
Must be:
double t1 = thermocouple1.readFahrenheit();
double t2 = thermocouple2.readFahrenheit();
double t3 = thermocouple3.readFahrenheit();
double t4 = thermocouple4.readFahrenheit();
Then post the results.