Skip to content

Commit e02689e

Browse files
committed
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.
1 parent 4380e29 commit e02689e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ void loop() {
102102
// convert the millivolts to temperature celsius:
103103
float temperature = (voltage - 500) / 10;
104104
// print the temperature:
105-
client.print("Current time on the Yún: ");
105+
client.print("Current time on the Y&uacuten: ");
106106
client.println(timeString);
107107
client.print("<br>Current temperature: ");
108108
client.print(temperature);
109-
client.print(" degrees C");
109+
client.print(" &degC");
110110
client.print("<br>This sketch has been running since ");
111111
client.print(startString);
112112
client.print("<br>Hits so far: ");

0 commit comments

Comments
 (0)