mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
13 lines
222 B
Gnuplot
13 lines
222 B
Gnuplot
|
|
set terminal png
|
|
set output "energytrace.png"
|
|
|
|
set title "GoodWatch Current Consumption" font ",20"
|
|
set xlabel "Seconds"
|
|
set ylabel "Current"
|
|
#set yrange [0:10e-06]
|
|
set xrange [10:60]
|
|
|
|
plot "energytrace.txt" with lines;
|
|
|