sparslog 0.1.5

SDR receiver for IKEA sparsnäs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env gnuplot

set terminal pngcairo size 1280,720 font "Helvetica"
set output 'plot.png'
set datafile separator ','
set ylabel "Watts"
set xlabel "Date"
set timefmt "%s"
set format x "%Y-%m-%d\n%H:%M:%S"
set xdata time
set xtics rotate
set grid
plot [] [0:500] \
     't.csv' using 1:3 w d title 'Measurements', \
     "< ./run-average.awk -F, size=100 t.csv" using 1:2 w l lw 1 title 'Smoothed'