3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
83:0d3572a8a851
Parent:
50:c07e968b9582
--- a/FakeSensor/FakeSensor.h	Thu May 11 15:53:15 2017 +0000
+++ b/FakeSensor/FakeSensor.h	Thu May 11 19:23:55 2017 +0000
@@ -1,4 +1,4 @@
-/*
+/**
     Represents a fake barometer
     Holds a min and max pressure as a range for fake pressure readings
     Also holds pseudo methods as copies of the original barometers
@@ -16,10 +16,10 @@
         float pressure();
 };
 
-/*
+/**
     Represents a fake measurer
-    Holds a min and max temperature and humidity as a range for fake readings
-    Also holds pseudo methods as copies of the original sensors
+    Holds a min and max temperature and humidity as ranges for the fake readings
+    Also holds pseudo methods as copies of the original sensor methods
 */
 class FakeMeasurer
 {
@@ -29,7 +29,6 @@
         float humidityMin;
         float humidityMax;
         
-        // Constructor
         FakeMeasurer(float tempMin, float tempMax, float humiMin, float humiMax);
         
         bool init();