only ignore invalid gas res logs when plotting gas res

This commit is contained in:
William Clark 2024-08-20 11:49:51 +01:00
parent 73b4262ea3
commit 42ab393dce

View File

@ -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"
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"