This directory contains a simple GNOME panel applet to display the
contents of a w1retap XML data file, as produced by the w1retap
distributed wplot.pl script.

In order to specify the location of the server providing the data, you
need a configuration file:

     ~/.config/w1retap/applet

This may contain a number of key/value pairs,

url = 
key = 
delay = 
auth = 

 e.g.:

[Config]
# Externally visible site
#url = http://www.zen35309.zen.co.uk/wx/wx_static.xml

# Internal (LAN) site
url = http://roo/wx/wx_static.xml

# Updates in seconds (defaults to 120)
#delay = 600

# Data to display in applet (from XML document), default is
# temperature
key = temperature

# If your site requires basic or digest authorisation
auth = user:password

Example of XML source document:

 <?xml version="1.0" encoding="utf-8"?>

 <report unixepoch="1122809040" timestamp="2005-07-31T12:24:00+0100">
  <station place="Netley Marsh">
    <sensor name="temperature" value="18.50" units="°C"></sensor>
    <sensor name="pressure" value="1015.23" units="hPa"></sensor>
    <sensor name="humidity" value="84.83" units="%"></sensor>
    <sensor name="rainfall" value="0.0000" units="in/hr"></sensor>
    <sensor name="dewpoint" value="15.90" units="°C"></sensor>
    <sensor name="greenhouse" value="22.56" units="°C"></sensor>
  </station>
  <station place="Southampton Docks">
    <sensor name="windspeed" value="6.4" units="knots"></sensor>
    <sensor name="direction" value="250" units="degrees"></sensor>
    <sensor name="tide" value="2.7" units="metres"></sensor>
  </station>
 </report>

One day there will be proper stuff, like autoconf, gconf, preferences
etc, for now to build:

# Edit Makefile as required
$ make && sudo make install
# Add to panel

To uninstall

# Remove from panel 
$ sudo make uninstall

w1temp is licenced under the GPL.
