# Kommentar
set title "Ladekurven"
set xlabel "Uhrzeit (MEZ)" font "courier"
set ylabel "Batteriespannung (V)" font "courier"
set y2label "Ladestrom (A)" font "courier"
set xtics rotate font "courier" font "courier"
set ytics nomirror font "courier" font "courier"
set mytics
set y2tics
set my2tics
set nologscale x
set xdata time
set format x "%H"
set timefmt "%H:%M:%S"
set grid
set border
set key inside right top
set term png
set out "solar.png"
plot "solar.mes" using 2:3 title 'Spannung' with lines,\
"solar.mes" using 2:4 title 'Strom' axis x1y2 with lines
set ylabel "Solarspannung (V)"
set y2label "Solarstrom (A)"
set out "solar2.png"
plot "solar.mes" using 2:5 title 'Spannung' with lines,\
"solar.mes" using 2:6 title 'Strom' axis x1y2 with lines