bestes
March 24, 2016, 6:07pm
2
Hi Matt,
Welcome!
You’re not the first to ask for this… short answer, we’re opening up an API so you can get the data, and sooner than later we’re going to allow you to download a CSV of all data gathered. Linking the relevant posts too:
Here is my python code that gets the temperature and sends it to my server :
from helium.api import *
import time
import json
import urllib2
# Open chrome on the cayenne's login page
start_chrome("https://cayenne.mydevices.com/cayenne/login")
time.sleep(2)
# Fill form with email and password
write("xxxxxxxxxx@xxxxxxxx.xxx", into="email")
write("xxxxxxxxxxxxxxxxxxxxxxx", into="password")
# Click on the "Log In" button
press(TAB)
press(ENTER)
# DEVICE_CODE can be found in the dashboard's URL…
Is there a way to download/export sensor data?
Something simple could be implemented with a trigger that after XX day(s)/week(s) all the raw data from YY sensor is emailed to user as CSV file. This would allow further data analysis by the user instead of simply viewing it through your online graphs where data points are averaged depending on the time scale selected.
I’m not sure how long the data resides on your servers and when it is parsed to averages after a given time frame (and therefore …