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