Plotly Online-Analytik und Datenvisualisierungstool Beispiel

Dependencies:   EthernetInterface mbed-rtos mbed plotly

Fork of PlotlySensorChart by th.iotkit2.ch

Plotly ist ein Online-Analytik und Datenvisualisierungstool. Plotly bietet Werkzeuge für Online-Grafiken, Analysen und Statistiken sowie wissenschaftliche Grafik-Bibliotheken für Python , R , MATLAB , Perl , Julia , Arduino und REST.

Weitere Informationen zum Anpassen des Charts etc. siehe Arduino Tutorial (scrollen nach Usage and Docs)

plot.ly verwendet Username, API Key zusammen mit Tokens zur Eindeutigen Authentifizierung.

Das Chart ist nach laden des Programmes auf folgender Adresse abrufbar: https://plot.ly/~mc-b/11

Revision:
3:f88ff0acc0b1
Parent:
2:99852a7499da
Child:
4:ca50b0858165
--- a/main.cpp	Wed Mar 18 12:51:58 2015 +0000
+++ b/main.cpp	Fri Mar 27 09:57:07 2015 +0000
@@ -10,9 +10,9 @@
 
 // plotly account details
 const int numberOfTraces = 3;
-const char PlotlyUsername[] =  "YoutUsername";
-const char PlotlyAPIToken[] = "YourAPIKey";
-const char *PlotlyStreamingTokens[numberOfTraces] = {"YourStreamToken","YourSecondStreamToken"}; // or {"YourStreamToken"} for a single line. Must match numberOfTraces
+const char PlotlyUsername[] =  "mc-b";
+const char PlotlyAPIToken[] = "ggngm3tplt";
+const char *PlotlyStreamingTokens[numberOfTraces] = {"9vdxtza25l","0pfcxy8fp3", "mpyq3oowhe"}; // or {"YourStreamToken"} for a single line. Must match numberOfTraces
 const char PlotlyFileName[] = "Mbed Test Chart";
 
 plotly graph = plotly(PlotlyUsername,PlotlyAPIToken, PlotlyStreamingTokens, PlotlyFileName, numberOfTraces);