Hi all,
I took the hint from vince and read the manuals again.
I found some new information and tried it.
Finally it worked for me in the way, that tI got everything like to see.
So far so good.
thanks for putting me on the manuals again, even so I have read them a couple of times... but nut deep enough I guess.
Question remains:
In the plots I see the CB for centibar for the moisture.
I like to display each sensor soilTemp1 and soilMoist1 in one plot.
That is done and I can read the data....
BUT!!!! in the upper left corner, I see a "cb" which is not correct since I have soilTemp and soilMoist in one plot.
So how do I change the unit of that plot.
I tried a few things, but it did not work
Any hints on that please.
@Michael: I will post my changes after I have solved all issues.
but just some info:
skin.con
adding
# This one is probably specific to my station!
soilTemp1 = Soil Temp 1
soilTemp2 = Soil Temp 2
soilTemp3 = Soil Temp 3
soilTemp4 = Soil Temp 4
soilMoist1 = Soil Moist 1
soilMoist2 = Soil Moist 2
soilMoist3 = Soil Moist 3
soilMoist4 = Soil Moist 4
for the daily images
[[[daysoilsensor1]]]
yscale = None, None, 0.5
[[[[soilTemp1]]]]
[[[[soilMoist1]]]]
[[[daysoilsensor2]]]
yscale = None, None, 0.5
[[[[soilTemp2]]]]
[[[[soilMoist2]]]]
[[[daysoilsensor3]]]
yscale = None, None, 0.5
[[[[soilTemp3]]]]
[[[[soilMoist3]]]]
[[[daysoilsensor4]]]
yscale = None, None, 0.5
[[[[soilTemp4]]]]
[[[[soilMoist4]]]]
This has to be done for week, month and year
index.html.template you have to do something like this:
#if $day.soilTemp1.has_data
<tr>
<td class="stats_label">
High Soil Temp. 1<br/>
Low Soil Temp. 1
</td>
<td class="stats_data">
$day.soilTemp1.max at $day.soilTemp1.maxtime<br/>
$day.soilTemp1.min at $day.soilTemp1.mintime
</td>
</tr>
#end if
#if $day.soilMoist1.has_data
<tr>
<td class="stats_label">
High Soil Moist. 1<br/>
Low Soil Moist. 1
</td>
<td class="stats_data">
$day.soilMoist1.max at $day.soilMoist1.maxtime<br/>
$day.soilMoist1.min at $day.soilMoist1.mintime
</td>
</tr>
#end if
and for the plots in index.html.tmpl
</div><div class="plots">
<img class="grid_4 alpha" src="daysoilsensor1.png" alt="Soil Sensor 1" />
<img class="grid_4 omega" src="daysoilsensor2.png" alt="Soil Sensor 2" />
<div class="clr"></div>
</div><div class="plots">
<img class="grid_4 alpha" src="daysoilsensor3.png" alt="Soil Sensor 3" />
<img class="grid_4 omega" src="daysoilsensor4.png" alt="Soil Sensor 4" />
<div class="clr"></div>
Hope that gives you a direction to look for
Best
Frank