<% include layout.ejs %> <% include ../public/html/header.html %> <% include ../public/html/navbar.html %>

ESP8266 Temperature Sensors

Note: I am still experimenting with these sensors. It seems that the sensors will have a bad reading every once in while. For example the low every day for the Grand Meadow sensor is 33.8. From observing the data, it randomly jumps to 33.8 one out of about every few hundred readings or so. I will continue to investigate this problem when I can get my hands on the sensor as it is currently in my home town.


<% for (var i = 0; i < query.length; i++){ %>

<%=query[i]._id%>

Temperature: <%=query[i].temperature%>°F

Humidity: <%=query[i].humidity%>%

Updated: <%=query[i].lastUpdate%>
<% if (query[i].connected){ %> Connected <%} else {%> Disconnected <%}%>

<%}%>














<% include layoutBottom.ejs %>