Hello,
I run weewx 4.7.0 with a gw1000 (0.4.2) , a froggit WH3000, four WH31 and one WH51.
In the field current conditions two of the four WH31 are shown and other values like inside temperature humidity etc. I want to add the other two WH31 and the WH51 like it is described here:
I have to add the sensors in the current.inc. But my current.ins in /etc/weewx/skins/Seasons only show this:
I would expect to see more sensors? Where are extraTemp1, extraTemp2 etc. ?
from line 18:
#set $observations = $to_list($DisplayOptions.get('observations_current', ['outTemp', 'barometer']))
#for $x in $observations
#if $getVar('year.%s.has_data' % $x)
#if $x == 'barometer'
<tr>
<td class="label">$obs.label.barometer</td>
<td class="data">$current.barometer ($trend.barometer.formatted)</td>
</tr>
#elif $x == 'windSpeed'
<tr>
<td class="label">$obs.label.wind</td>
<td class="data">$current.windSpeed $current.windDir.ordinal_compass ($current.windDir)</td>
</tr>
#elif $x == 'rain'
<tr>
<td class="label">$gettext("Rain Today")</td>
<td class="data">$day.rain.sum</td>
</tr>
#else
<tr>
<td class="label">$obs.label[$x]</td>
<td class="data">$getVar('current.' + $x)</td>
</tr>
#end if
#end if
#end for
Maybe it is everything somwhere here?
$getVar('current.' + $x)
I don't understand how to add the sensors, so maybe can explan it to me.
Thank you
Thomas