Graph of Ping times between Agent and Device round trip

East coast location
Graph (can change ranges x,y)

Agent:
function fup(value){
device.send(“dn”,“2”);
}
device.on(“update”,sendtocosm);
device.on(“up”,fup);

Device:
imp.configure(“Cosm2”, [], []);
local ms;
function fdn(value){
//server.log(hardware.millis()-ms);
agent.send(“update”,hardware.millis()-ms);
}
function myloop(){
imp.wakeup(15,myloop);
agent.send(“up”,“1”);
ms=hardware.millis();
}
agent.on(“dn”,fdn);
myloop();

Did you like my pretty graph? I’m looking for another tool to do more complex and larger graphs of the CSV URL from Cosm. Any ideas?

Click on “Graph” above.