We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44390f7 commit 3ab4efdCopy full SHA for 3ab4efd
examples/ReadSensor/ReadSensor.ino
@@ -25,11 +25,11 @@ void setup() {
25
26
void loop() {
27
28
- Serial.print("ref ");
+ Serial.print("Internal temperature ");
29
Serial.print(THERM.readInternalTemperature());
30
Serial.println(" °C");
31
32
- Serial.print("celcius ");
+ Serial.print("External temperature ");
33
Serial.print(THERM.readTemperature());
34
35
src/MKRTherm.cpp
@@ -44,7 +44,7 @@ void THERMClass::end()
44
45
uint32_t THERMClass::readSensor()
46
{
47
- uint32_t read=0x00;
+ uint32_t read = 0x00;
48
49
digitalWrite(_cs, LOW);
50
delayMicroseconds(1);
0 commit comments