Hi Rob,
As you've spotted the right place too look at, I'll give
you a small recipe:
1st, there is an error on line #191
if (fo_3080 == false)
should be:
if (fo_3080 == true)
For others, the problem is with decimal numbers, so the easiest
way to correct them is to replace all these "if" with your answers
to these "questions":
// If you (don't) have a Fine Offset Model 3080
fo_3080 = false;
// If you (don't) have a Hydreon RG-11
sensor_rg = false;
// If you have a Davis station
davis = true;
// If you (don't) have a UV Sensor
sensor_uv = false;
// If you (don't) have a Solar Sensor
sensor_solar = false;
This is the short way, other way is to look at the processed file
to see where adjustments need to be done.
(like this one: if ((0.0 == 0) && (0.0 == 0) && (0.0 == 0) && (0.0 == 0)) )
Regards,
Jacques