I use Weather-Display. The software generate the file yowindow.xml. Here is the customyowindow.txt I use:
<!-- Remove auto_update section if wanting the default, otherwise in seconds -->
<!-- Remove snow section if not inputting snow -->
<!-- Remove the uv and solar tags if not using those detectors -->
<response>
<current_weather>
<auto_update>
<interval value="310"/>
</auto_update>
<temperature>
<current value="%temp%"/>
<feels_like value="%feelslikeincelsius%"/>
</temperature>
<humidity value="%hum%"/>
<pressure value="%baro%"/>
<wind>
<speed value="%avdir10minute%"/>
<gusts value="%1mingustwind%"/>
<direction value="45 °"/>
</wind>
<sky>
<icon id="%iconnumber%" format="wd"/>
<description value="%weatherreport%"/>
<precipitation>
<rain>
<rate value="%currentrainrate%"/>
<daily_total value="%dayrn%"/>
</rain>
</precipitation>
</sky>
</current_weather>
</response>
Weather-Display gererates the follow yowindow.xml:
<!-- Remove auto_update section if wanting the default, otherwise in seconds -->
<!-- Remove snow section if not inputting snow -->
<!-- Remove the uv and solar tags if not using those detectors -->
<response>
<current_weather>
<auto_update>
<interval value="310"/>
</auto_update>
<temperature>
<current value="18.9°C"/>
<feels_like value="19"/>
</temperature>
<humidity value="75"/>
<pressure value="975.6 hpa"/>
<wind>
<speed value="352°"/>
<gusts value="1.9 km/h"/>
<direction value="45 °"/>
</wind>
<sky>
<icon id="5" format="wd"/>
<description value="Trocken"/>
<precipitation>
<rain>
<rate value="0.0"/>
<daily_total value=" 3.3 mm"/>
</rain>
</precipitation>
</sky>
</current_weather>
</response>
This is the Display on my screen:
I think, the problem is:
<temperature>
<current value="18.9°C"/>
and
<wind>
<speed value="352°"/>
and
<pressure value="975.6 hpa"/>
and
<daily_total value=" 3.3 mm"/>
What must I do for the correct parameters for the right view, Can you help me? (Sorry for my bad english!!!)
Best regards from Germany