add screenshotting

This commit is contained in:
2026-01-29 14:09:47 -07:00
parent db7a2bc36b
commit 9288c2b28d
5 changed files with 281 additions and 8 deletions

17
template.gnuplot Normal file
View File

@@ -0,0 +1,17 @@
datafile = 'data.csv'
set datafile separator ','
set title 'Data Dump'
set key autotitle columnhead
set xlabel "Time (ms)"
set ylabel "Value"
set style line 1 linewidth 2 linecolor 1 pointtype 7 pointsize 1.5
set autoscale
set grid
set term png size 1280, 720
plot datafile using 1:2 with linespoints linestyle 1
# plot datafile using 1:2 with linespoints linestyle 1, datafile using 1:3, etc...
replot