Yes, at the very least
Serial.print("Temp:"+c)
is not properly defined and does nothing.
Try
Serial.print("Temp: ");
Serial.println(c);
Yes, at the very least
Serial.print("Temp:"+c)
is not properly defined and does nothing.
Try
Serial.print("Temp: ");
Serial.println(c);