1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00

fixed updated date - adjusted sensor page for humidity - updated mongoose model for temperature

This commit is contained in:
2016-01-24 19:51:12 -06:00
parent 3a5cd6e408
commit eff6d5b54a
3 changed files with 12 additions and 7 deletions

View File

@@ -25,7 +25,11 @@ I will continue to investigate this problem when I can get my hands on the senso
<div class="col-lg-4">
<h3><%=query[i]._id%></h3>
<h4>Temperature: <%=query[i].temperature%>°F </h4>
<h4>Humidity: <%=query[i].humidity%>%</h4>
<% if (query[i].humidity != null) { %>
<h4>Humidity: <%=query[i].humidity%>%</h4>
<%}%>
<span>Updated: <%=query[i].lastUpdate%></span>
<br>
<% if (query[i].connected){ %>