only ignore invalid gas res logs when plotting gas res
This commit is contained in:
parent
73b4262ea3
commit
42ab393dce
@ -19,19 +19,19 @@ set title "[I_{dac}=100, 100ms, target=300 C] Temperature over time"
|
|||||||
set xlabel "Time"
|
set xlabel "Time"
|
||||||
set ylabel "Temperature (C)"
|
set ylabel "Temperature (C)"
|
||||||
set output "temp.png"
|
set output "temp.png"
|
||||||
plot 'i2c.txt' u 1:2 w p pt 3 ps 1 t "bme680-i2c", \
|
plot '../data/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"
|
'../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 title "[I_{dac}=100, 100ms, target=300 C] Pressure over time"
|
||||||
set xlabel "Time"
|
set xlabel "Time"
|
||||||
set ylabel "Pressure (Pa)"
|
set ylabel "Pressure (Pa)"
|
||||||
set output "press.png"
|
set output "press.png"
|
||||||
plot 'i2c.txt' u 1:3 w p pt 3 ps 1 t "bme680-i2c", \
|
plot '../data/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"
|
'../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 title "[I_{dac}=100, 100ms, target=300 C] Humidity over time"
|
||||||
set xlabel "Time"
|
set xlabel "Time"
|
||||||
set ylabel "Humidity (%RH)"
|
set ylabel "Humidity (%RH)"
|
||||||
set output "hum.png"
|
set output "hum.png"
|
||||||
plot 'i2c.txt' u 1:4 w p pt 3 ps 1 t "bme680-i2c", \
|
plot '../data/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"
|
'../data/spi.txt' u 1:4 w p pt 3 ps 1 t "bme680-spi"
|
Loading…
Reference in New Issue
Block a user