void setup() { Serial.begin(115200); Serial.println(F("Internal Temperature Sensor")); } void loop() { // Show the temperature in degrees Celcius. Serial.println(GetTemp(),2); delay(1000); } float GetTemp(void) { unsigned int wADC; double t; // The internal temperature has to be used // with the internal reference of 1.1V. // Channel 8 can not be selected with // the analogRead function yet. // Set the internal reference and mux. ADMUX = 0xC8; ADCSRA |= (1<