From 42ab393dce61647e6527a497a655679d01af4644 Mon Sep 17 00:00:00 2001 From: William Clark Date: Tue, 20 Aug 2024 11:49:51 +0100 Subject: [PATCH] only ignore invalid gas res logs when plotting gas res --- plot/gnuplot.gpt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plot/gnuplot.gpt b/plot/gnuplot.gpt index 7d95040..e2b0683 100644 --- a/plot/gnuplot.gpt +++ b/plot/gnuplot.gpt @@ -19,19 +19,19 @@ set title "[I_{dac}=100, 100ms, target=300 C] Temperature over time" set xlabel "Time" set ylabel "Temperature (C)" set output "temp.png" -plot 'i2c.txt' u 1:2 w p pt 3 ps 1 t "bme680-i2c", \ - 'spi.txt' u 1:2 w p pt 3 ps 1 t "bme680-spi" +plot '../data/i2c.txt' u 1:2 w p pt 3 ps 1 t "bme680-i2c", \ + '../data/spi.txt' u 1:2 w p pt 3 ps 1 t "bme680-spi" set title "[I_{dac}=100, 100ms, target=300 C] Pressure over time" set xlabel "Time" set ylabel "Pressure (Pa)" set output "press.png" -plot 'i2c.txt' u 1:3 w p pt 3 ps 1 t "bme680-i2c", \ - 'spi.txt' u 1:3 w p pt 3 ps 1 t "bme680-spi" +plot '../data/i2c.txt' u 1:3 w p pt 3 ps 1 t "bme680-i2c", \ + '../data/spi.txt' u 1:3 w p pt 3 ps 1 t "bme680-spi" set title "[I_{dac}=100, 100ms, target=300 C] Humidity over time" set xlabel "Time" set ylabel "Humidity (%RH)" set output "hum.png" -plot 'i2c.txt' u 1:4 w p pt 3 ps 1 t "bme680-i2c", \ - 'spi.txt' u 1:4 w p pt 3 ps 1 t "bme680-spi" \ No newline at end of file +plot '../data/i2c.txt' u 1:4 w p pt 3 ps 1 t "bme680-i2c", \ + '../data/spi.txt' u 1:4 w p pt 3 ps 1 t "bme680-spi" \ No newline at end of file