Sorry, no pics, there's not much to look at.
Here's what I have so far: the weather station is an Oregon Scientific WMR968. Its base has an RS 232 port. Each time one of the sensors reports in, the base outputs to the RS 232 port a formatted stream with the sensor data. The format of the stream is here:
http://www.cs.stir.ac.uk/~kjt/software/comms/wmr928.htmlI have an Arduino (with a MAX232 serial inverter) that sits reading the incoming stream. When it verifies that a complete packet has been received, it bundles it up into an HTTP GET request which calls a PHP page on my website, using the IOBridge, a serial smart board and the serial services API. The PHP page logs the data to a SQL table. Every ten minutes or so the PHP page calls Weather Underground and updates it with the latest value for each sensor.
The one tricky thing is the arduino only has one serial port but I'm connecting to two serial devices, the weather station and the serial smart board. Fortunately both connections are unidirectional, I can use the receive pin with the weather station and the send pin with the iobridge and it works.
Nick