2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

gnuplot for FS20 now only off or on

git-svn-id: https://svn.fhem.de/fhem/trunk@108 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinhaas 2007-10-30 07:42:38 +00:00
parent 8afe3f06dc
commit e48b09cd2c
4 changed files with 9 additions and 2 deletions

View File

@ -146,3 +146,6 @@ It is not necessary to tell fhem that there are other logs.
2007-10-25 (071025cvs)
-- design: userdef-gnuoplot with transparent background
2007-10-20 (071030cvs)
-- fix: gnuplot for FS20 now only off or on

View File

@ -45,3 +45,6 @@
- Martin 2007-10-25
- design: userdef-gnuplot with transparent background (userdef.php)
- Martin 2007-10-30
- fix: gnuplot for FS20 now only off or on

View File

@ -63,8 +63,9 @@ set noytics
set noy2tics
set yrange [-0.2:1.2]
set ylabel "On/Off"
plot "< awk '{print $1, $3==\"on\"? 1 : $3==\"dimup\"? 0.8 : $3==\"dimdown\"? 0.2 : $3==\"off\"? 0 : 0.5;}' $logfile" using 1:2 title '' with steps
plot "< awk '{print $1, $3==\"on\"? 1 : $3==\"dimup\"? 1 : $3==\"dimdown\"? 0 : $3==\"off\"? 0 : 0.5;}' $logfile" using 1:2 title '' with steps
EOD;
#plot "< awk '{print $1, $3==\"on\"? 1 : $3==\"dimup\"? 0.8 : $3==\"dimdown\"? 0.2 : $3==\"off\"? 0 : 0.5;}' $logfile" using 1:2 title '' with steps
break;
Case WS300_t1: ############################################

View File

@ -41,7 +41,7 @@ include "include/gnuplot.php";
include "include/functions.php";
$pgm3version='071025';
$pgm3version='071030';
$Action = $_POST['Action'];