Temperature6
![]() |
![]() |
The goal of this project is to log 6 temperature sensors that are in a vertical line. You can see the current condition at my Thing Speak Channel 1244.
Downloads
All source code is available from my local download or from github.com/larsi-org/WeatherStation
Hardware
Software
Arduino
The Arduino code is just copied together from my previous projects. The complete code is here (you have to adjust your ThingSpeak update key):
Show the weather condition
ThingSpeak makes it easy to access your own data. Here is just an example, but much better graphs are possible:
<html>
<head>
<title>Weather Condition</title>
</head>
<body>
<h1>Temperature6 Condition <?php print(date('m/d/Y')); ?></h1>
<table width="100%">
<tr>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/1?timescale=10"></iframe></div></td>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/2?timescale=10"></iframe></div></td>
</tr>
<tr>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/3?timescale=10"></iframe></div></td>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/4?timescale=10"></iframe></div></td>
</tr>
<tr>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/5?timescale=10"></iframe></div></td>
<td><div align="center"><iframe width="480" height="250" style="border: 1px solid #cccccc;" src="https://www.thingspeak.com/channels/1244/charts/6?timescale=10"></iframe></div></td>
</tr>
</table>
</body>
</html>


