mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Print "Yún" and not "Y�n"; "degrees C" to "ºC"
Hi, just got a Yún few days ago and noticed that when testing stuff, just cosmetic. Thanks.
This commit is contained in:
parent
4380e2930e
commit
e02689e70e
@ -102,11 +102,11 @@ void loop() {
|
||||
// convert the millivolts to temperature celsius:
|
||||
float temperature = (voltage - 500) / 10;
|
||||
// print the temperature:
|
||||
client.print("Current time on the Yún: ");
|
||||
client.print("Current time on the Yún: ");
|
||||
client.println(timeString);
|
||||
client.print("<br>Current temperature: ");
|
||||
client.print(temperature);
|
||||
client.print(" degrees C");
|
||||
client.print(" °C");
|
||||
client.print("<br>This sketch has been running since ");
|
||||
client.print(startString);
|
||||
client.print("<br>Hits so far: ");
|
||||
|
Loading…
Reference in New Issue
Block a user