1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Merge pull request #2726 from hashashin/hashashin-patch-1

TemperatureWebPanel.ino Print "Yún" and not "Y�n", "degrees C" to "ºC"
This commit is contained in:
Federico Fissore 2015-03-12 09:09:41 +01:00
commit 7b495232ef

View File

@ -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&uacuten: ");
client.println(timeString);
client.print("<br>Current temperature: ");
client.print(temperature);
client.print(" degrees C");
client.print(" &degC");
client.print("<br>This sketch has been running since ");
client.print(startString);
client.print("<br>Hits so far: ");