mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
TemperatureWebPanel.ino: added missing semicolons
This commit is contained in:
@ -102,11 +102,11 @@ void loop() {
|
|||||||
// convert the millivolts to temperature celsius:
|
// convert the millivolts to temperature celsius:
|
||||||
float temperature = (voltage - 500) / 10;
|
float temperature = (voltage - 500) / 10;
|
||||||
// print the temperature:
|
// print the temperature:
|
||||||
client.print("Current time on the Yún: ");
|
client.print("Current time on the Yún: ");
|
||||||
client.println(timeString);
|
client.println(timeString);
|
||||||
client.print("<br>Current temperature: ");
|
client.print("<br>Current temperature: ");
|
||||||
client.print(temperature);
|
client.print(temperature);
|
||||||
client.print(" °C");
|
client.print(" °C");
|
||||||
client.print("<br>This sketch has been running since ");
|
client.print("<br>This sketch has been running since ");
|
||||||
client.print(startString);
|
client.print(startString);
|
||||||
client.print("<br>Hits so far: ");
|
client.print("<br>Hits so far: ");
|
||||||
|
Reference in New Issue
Block a user