Dashboard and analytics

Hello Particle community!

I decided to build a simple analytics/dashboard website. I know Particle is coming out with their Dashboard tool as well (there’s will definitely be much cooler), but I thought I would share my website for anyone interested in graphing their data. This is the first website I have ever built and I are excited to share it with the community. Please check it out and let me know what you think.

Here is the link for anyone that is interested:
anthalytics.com

Here is an example of the code I included in my program to make it available in the measure drop down menu:

void setup()
{
// Register a Spark variable here
Spark.variable(“sensor6”, &pressureLeft, DOUBLE);

Then on the website, sensor6 will appear as one of the values to graph

Thanks,
Anthony

1 Like