Regulator logging

Some log files are available for public use. Every minute a several temperatures are dumped into 128MM SmartMedia card for up to two years of storage. See my logger project If you want to play with this data. You can download this files: Use this AWK source to extract data-only from above logs:
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; }

Solar part daily diagrams

Select daily plot from solar part of regulation.

Resources


Last modified: Mon Nov 24 13:33:15 CET 2003