Graph from values and variables

Posted on
Sat Feb 14, 2015 1:55 pm
davinci offline

Graph from values and variables

I'm looking for an easy way to upload data - for example to Google Charts to get graphs fro temperature and humidity in one graph. I didn't find any plugin except for Thingspeak but there I can't seem to use multiple graphs in one image and always have the URL in the image as well.

I want to show the graphs in a nice looking way in a Web App on an iPhone.

Any advice?

Posted on
Sat Feb 14, 2015 2:58 pm
richo offline
Posts: 158
Joined: Nov 25, 2014
Location: Pomorskie, Poland

Re: Graph from values and variables

IndigoPlot is a great plugin for charting. Here you can download it.

http://www.indigodomo.com/library/341/

Ryszard

Posted on
Sat Feb 14, 2015 4:33 pm
kw123 offline
User avatar
Posts: 8366
Joined: May 12, 2013
Location: Dallas, TX

Re: Graph from values and variables

That's an old version. Please check out the indigoplotd download thread :

http://forums.indigodomo.com/viewtopic.php?f=134&t=12754&start=15
Sent from my iPhone using Tapatalk

Posted on
Sat May 30, 2015 7:29 am
brian.vanheesch offline
Posts: 17
Joined: May 05, 2014

Re: Graph from values and variables

I use thinkspeak and this handy plugin for multiple charts on a single graph. It is very slick.

http://community.thingspeak.com/forum/a ... sv-export/

I do not use the thingspeak plugin; instead I invoke their API directly (within a schedule):

Code: Select all

import httplib, urllib
params1 = urllib.urlencode({'field1': total_watts, 'field2': total_bulbs, 'key':'YOURKEYHERE'})
headers = {"Content-type": "application/x-www-form-urlencoded","Accept": "text/plain"}

f = httplib.HTTPConnection("api.thingspeak.com:80")
f.request("POST", "/update", params1, headers)
response = f.getresponse()
f.close()

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 9 guests