From e02689e70ed90b421e86a4499c58189fb5cbb336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n?= Date: Mon, 2 Mar 2015 23:27:55 +0100 Subject: [PATCH] =?UTF-8?q?Print=20"Y=C3=BAn"=20and=20not=20"Y=EF=BF=BDn";?= =?UTF-8?q?=20"degrees=20C"=20to=20"=C2=BAC"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi, just got a Yún few days ago and noticed that when testing stuff, just cosmetic. Thanks. --- .../examples/TemperatureWebPanel/TemperatureWebPanel.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino b/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino index 81cf1745e..51e44ab13 100644 --- a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino +++ b/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino @@ -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("
Current temperature: "); client.print(temperature); - client.print(" degrees C"); + client.print(" °C"); client.print("
This sketch has been running since "); client.print(startString); client.print("
Hits so far: ");