Feature #898
Thermostat dashboard
Start date:
11/17/2014
Due date:
% Done:
100%
Description
Show data from thermostats. Content may include:
- Heat/cool/fan cycles over time (area chart)
- Temperature of location
- Heater & AC current cycle percentage (and/or average HVAC cycle duration)
- Alerts on over active HVAC (running at 100%)
- Current temperature & heating/AC set-points
Subtasks
History
#1 Updated by Luke Murphey about 10 years ago
- Subject changed from thermostat dashboard to Thermostat dashboard
#2 Updated by Luke Murphey about 10 years ago
- Description updated (diff)
#3 Updated by Luke Murphey about 10 years ago
See http://blogs.splunk.com/wp-content/uploads/2012/12/Enery-Usage-and-Conservation.png, should add a chart showing fan, AC and heat cycles. See for more info: http://blogs.splunk.com/2012/12/17/meet-your-splunk-hackathon-winner-splunking-nest/
#4 Updated by Luke Murphey about 10 years ago
- Description updated (diff)
#5 Updated by Luke Murphey about 10 years ago
- Description updated (diff)
#6 Updated by Luke Murphey about 10 years ago
Here is a good source for wind chill info: https://developer.yahoo.com/weather/.
Here is an example in Python:
import urllib2, urllib, json baseurl = "https://query.yahooapis.com/v1/public/yql?" yql_query = "select wind from weather.forecast where woeid=2460286" yql_url = baseurl + urllib.urlencode({'q':yql_query}) + "&format=json" result = urllib2.urlopen(yql_url).read() data = json.loads(result) print data['query']['results']
#8 Updated by Luke Murphey about 10 years ago
- Status changed from New to Closed