BEGIN{
RS = "[\n\r]+";
print "# Status log description (temp in degrees and pump-status in hex):"
print "# outdoor boiler hot-water-container circuit0 circuit1 circuit2"
print "# solar-collectors solar-tank solar-heat-exchanger pump-status-hex pump-status-dec"
print "# Pump status bits: (hi-lo)"
print "# inter-tank solar circulator underfloor2 underfloor1 underfloor0"
print "# hot-water burner";
}
/[0-2][0-9]:[0-5][0-9].*0x[0-9A-F][0-9A-F]$/ { if (NF == 12) print $0 " " $12+0; }