diff --git a/fhem/www/gplot/SVG_Regen.gplot b/fhem/www/gplot/SVG_Regen.gplot new file mode 100644 index 000000000..c31bbdf4f --- /dev/null +++ b/fhem/www/gplot/SVG_Regen.gplot @@ -0,0 +1,16 @@ +# Created by FHEM/98_SVG.pm, 2016-09-24 12:51:49 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'Niederschlag' +set ytics +set y2tics +set grid +set ylabel "" +set y2label "mm" + +#logdb myWH1080:Rain-total + +plot "" using 1:2 axes x1y2 title 'Regen' ls l0 lw 1 with lines diff --git a/fhem/www/gplot/SVG_TempHeizungOG.gplot b/fhem/www/gplot/SVG_TempHeizungOG.gplot new file mode 100644 index 000000000..b62b6e92a --- /dev/null +++ b/fhem/www/gplot/SVG_TempHeizungOG.gplot @@ -0,0 +1,22 @@ +# Created by FHEM/98_SVG.pm, 2016-10-10 21:36:42 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'OG' +set ytics +set y2tics +set grid +set ylabel "Humidity" +set y2label "Temperature" + +#logdb OG_RL_Wohn1:temperature +#logdb OG_RL_Wohn2:temperature +#logdb OG_RL_Kueche:temperature +#logdb OG_RL_Flur:temperature + +plot "" using 1:2 axes x1y2 title 'Wohn1' ls l0 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Wohn2' ls l1 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Küche' ls l2 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Flur' ls l0 lw 1 with lines diff --git a/fhem/www/gplot/SVG_TempOut.gplot b/fhem/www/gplot/SVG_TempOut.gplot new file mode 100644 index 000000000..c608a6c9a --- /dev/null +++ b/fhem/www/gplot/SVG_TempOut.gplot @@ -0,0 +1,18 @@ +# Created by FHEM/98_SVG.pm, 2016-11-13 11:10:24 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'Temperatur Außen' +set ytics +set y2tics +set grid +set ylabel "Humidity" +set y2label "Temperature" + +#logdb myWH1080:Temp-outside +#logdb naAussen:temperature + +plot "" using 1:2 axes x1y2 title 'WH1080' ls l0 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'NetAtmo' ls l1 lw 1 with lines diff --git a/fhem/www/gplot/SVG_TempRaum.gplot b/fhem/www/gplot/SVG_TempRaum.gplot new file mode 100644 index 000000000..8b35e9469 --- /dev/null +++ b/fhem/www/gplot/SVG_TempRaum.gplot @@ -0,0 +1,24 @@ +# Created by FHEM/98_SVG.pm, 2016-09-23 19:56:37 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'Raumtemperatur' +set ytics +set y2tics +set grid +set ylabel "" +set y2label "Temperature" + +#logdb tempWohn:temperature +#logdb tempKueche:temperature +#logdb tempStudio:temperature +#logdb tempSchlaf:temperature +#logdb tempBad:temperature + +plot "" using 1:2 axes x1y2 title 'Wohn' ls l0 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Küche' ls l1 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Studio' ls l2 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Schlaf' ls l3 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Bad' ls l4 lw 1 with lines diff --git a/fhem/www/gplot/SVG_logNetatmoAussen_1.gplot b/fhem/www/gplot/SVG_logNetatmoAussen_1.gplot new file mode 100644 index 000000000..57f1cb8d4 --- /dev/null +++ b/fhem/www/gplot/SVG_logNetatmoAussen_1.gplot @@ -0,0 +1,16 @@ +# Created by FHEM/98_SVG.pm, 2015-12-07 18:00:48 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title '' +set ytics +set y2tics +set grid +set ylabel "Humidity" +set y2label "Temperature" + +#logNetatmoAussen 4:naAussen.temperature\x3a:: + +plot "" using 1:2 axes x1y2 title 'Line 1' ls l0 lw 1 with lines diff --git a/fhem/www/gplot/SVG_logdb_1.gplot b/fhem/www/gplot/SVG_logdb_1.gplot new file mode 100644 index 000000000..ec1dad745 --- /dev/null +++ b/fhem/www/gplot/SVG_logdb_1.gplot @@ -0,0 +1,19 @@ +# template file for use with DbLog +# $Id$ + +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " + +set title '' +set ylabel "Humidity" +set y2label "Temperature" +set grid +set ytics +set y2tics + +#DbLog device:reading:: + +plot "" using 1:2 title 'Line 1' with lines diff --git a/fhem/www/gplot/SVG_logdb_2.gplot b/fhem/www/gplot/SVG_logdb_2.gplot new file mode 100644 index 000000000..0591a921b --- /dev/null +++ b/fhem/www/gplot/SVG_logdb_2.gplot @@ -0,0 +1,18 @@ +# Created by FHEM/98_SVG.pm, 2016-09-23 19:59:20 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'Wetterstation' +set ytics +set y2tics +set grid +set ylabel "Druck" +set y2label "Wind" + +#logdb myWH1080:Wind-Gust +#logdb myWH1080:rel-Pressure + +plot "" using 1:2 axes x1y2 title 'Böhen' ls l0 lw 1 with lines,\ + "" using 1:2 axes x1y1 title 'Druck' ls l1 lw 1 with lines diff --git a/fhem/www/gplot/SVG_logdb_3.gplot b/fhem/www/gplot/SVG_logdb_3.gplot new file mode 100644 index 000000000..51aa81f2d --- /dev/null +++ b/fhem/www/gplot/SVG_logdb_3.gplot @@ -0,0 +1,24 @@ +# Created by FHEM/98_SVG.pm, 2017-11-09 18:05:35 +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set title 'Heizung DG' +set ytics +set y2tics +set grid +set ylabel "" +set y2label "Temperature" + +#logdb DG_VL:temperature:: +#logdb rl7:temperature:: +#logdb RL_Bad:temperature:: +#logdb rl9:temperature:: +#logdb OG_VL:temperature:: + +plot "" using 1:2 axes x1y2 title 'VL' ls l0 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Studio' ls l1 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Bad' ls l2 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Schlaf' ls l3 lw 1 with lines,\ + "" using 1:2 axes x1y2 title 'Vl og' ls l4 lw 1 with lines