Skip to content

Commit 7b49523

Browse files
committed
Merge pull request #2726 from hashashin/hashashin-patch-1
TemperatureWebPanel.ino Print "Yún" and not "Y�n", "degrees C" to "ºC"
2 parents 5468a91 + e02689e commit 7b49523

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)