
Make note of where you have unpacked this file (which directory is it in?)

First step is to configure some options in two files:

======= WxReceiverConfig.h ===================

Find the file libraries\WxReceivers\WxReceiverConfig.h and open it with a text editor
(notepad or wordpad will work). Make sure the WX_SHIELD_VERSION is set to 
reflect which shield you are using, either 1 or 2

#define WX_SHIELD_VERSION 2


Save any changes and close the editor window.

=================== WsdlWxShield.ino =======================

Next, find the file WsdlWxShield\WsdlWxShield.ino and open with a text editor.
Examine and change the following options to either one or zero:

#define ENABLE_RECEIVER       1  // should always be 1

#define ENABLE_SHT1X_SENSOR   0
  // only 1 if SHT7x sensor is installed
#define ENABLE_BMP085_SENSOR  1  // only 1 if using old BMP085 breakout board

#define ENABLE_BMP180_SENSOR  0  // Only if new BMP180 breakout board is installed

#define ENABLE_CRC_OUTPUT     0  // Leave this at zero



#define ENABLE_RECEIVER_PRINT 1  // should always be 1

#define ENABLE_SHT1X_PRINT    0  // only 1 if SHT15/75 sensor is installed

#define ENABLE_BMP085_PRINT   1  // should be 1 if either BMP085 or BMP180 is installed

===================== Building the Sketch ==========================

1) Open Arduino and select File...Preferences
2) Change the sketchbook location to be the directory where this file is stored.
   Close the options dialog. Chaning the sketchbook directory requires a restart
   of the Arduino program.
3) Close the Arduino window and re-start Arduino.
4) In main Arduino window, select Tools...Board... and click on the "Arduino Uno" menu pick.
5) In main Arduino window, select File...Sketchbook...WsdlWxShield.
   If you don't see the WxShield choice then the sketchbook location is not correct.
   Go back to preferences and re-check.
6) In the new window that pops up, select Sketch...Verify/Compile.
   The sketch should build w/o any errors.
   If you get errors try posting your problem on the WSDL Help or Open Discussion forum.
   No guarantees, but there might be someone there who can help.
7) Plug in the WxShield to a USB port on your computer. Make sure that WSDL is not running.
8) In the main Arduino window, select Tools...Serial Port... and choose the COM port that
   corresponds to the WxShield. If there is only one listed then choose that one. If there
   is more than one, the Windows Device Manager can help to figure out which one is the 
   WxShield.
9) In the main Arduino window, select File...Upload and this should update the WxShield with
   the new sketch.




