X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=c%2Fgoertzel%2Fsleepplot.sh;h=5b5a92ebb80a3a5e14a795ef5dcb19f4331bd308;hb=3e5828b5bfdae6ef1457d8e44c551369e12e467b;hp=496690e1c06bd05a77a65ab3df2f662c6bc0833a;hpb=6c5737553eba6afbdba017ca776cf8788c85577f;p=mirrors%2FPrograms.git diff --git a/c/goertzel/sleepplot.sh b/c/goertzel/sleepplot.sh index 496690e..5b5a92e 100755 --- a/c/goertzel/sleepplot.sh +++ b/c/goertzel/sleepplot.sh @@ -5,14 +5,9 @@ test -z "$1" && { exit 23 } -#Count: +#Count events: seconds=60 -cat "$1" | cut -f 2,5 | cut -d ' ' -f 1 | grep '1$' | while read line; do - time=$(echo $line | cut -d ' ' -f 1); - time=$(( $time + $seconds - $time%$seconds )) - echo "$time" -done | uniq -c | sed -e 's/^\s*//g' | tr ' ' '\t' > "$1.counts" - +./sleepcount.sh "$1" "$seconds" #Approximate size of graph size="$(tail -n 1 "$1" | cut -d . -f 1)" @@ -37,7 +32,8 @@ set timefmt "%s" set grid #set pointsize 0.5 -plot "$1" using 2:5 with steps, "$1.counts" using 2:(\$1/7) with lines +plot "$1" using 2:5 title "Sensor state" with steps,\ +"$1.counts.$seconds" using 1:(\$2/5) title "Activations in last $seconds seconds" smooth csplines EOF