-
Notifications
You must be signed in to change notification settings - Fork 5
Chip Temperature
Defragster edited this page Mar 18, 2020
·
13 revisions
TBD
The Teensy 4 core has an inbuilt function:
extern float tempmonGetTemp(void);
void setup() {
while (!Serial);
}
void loop() {
Serial.print( tempmonGetTemp() );
Serial.println("°C");
delay(500);
}Teensy is a PJRC trademark. Notes here are for reference and will typically refer to the ARM variants unless noted.