pub fn get_pressure<R: BufRead>(
r: R,
) -> ProcResult<(PressureRecord, PressureRecord)>
Expand description
Get the pressure records from a reader. The first line should be a some
record, and the second line a full
record.
The records are returned in the same order.
some avg10=4.50 avg60=0.91 avg300=0.00 total=681245
full avg10=2.10 avg60=0.12 avg300=0.00 total=391926
See also parse_pressure_record
.