I am new with domoticz i like move from emoncms graphs to my domoticz server PI, please can someone help how to, Where to find , what to do to
To get these graphs in domoticz
I like to have one graph with the HR,Cloud,Light one graph with T,IR-TEMP,Dew and a traffic light based on cloudy, dewing, frizzing where 0 is red and 1 is green ore something like that
Below the arduino code i send to emoncms

if (client.connect(server, 80)) {
Serial.print("sendData Connecting...to emoncms ");
Serial.println(loopcount);
// send the HTTP PUT request:
client.print("GET http://myserver/input/post.json?node=1& ... 8008&json={");
client.print("\"T\":\"");
client.print(T);
client.print("\",\"Clouds\":\"");
client.print(Clouds);
client.print(",IR:");
client.print(IR);
client.print(",HR:");
client.print(HR);
client.print(",dew:");
client.print(Dew);
client.print(",light:");
client.print(light);
client.print(",Clouds:");
client.print(Clouds);
client.print(",skyT:");
client.print(skyT);
client.print(",cloudy:");
client.print(cloudy);
client.print(",dewing:");
client.print(dewing);
client.print(",frezzing:");
client.print(frezzing);
client.println("\"}");
lastConnectionTime = millis();
client.stop();
}
I hope some can help me to get this running
The Idea is based on this automated things
Thanks on forhand
Chris