3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
FairyMental
Date:
Wed Apr 05 14:48:21 2017 +0000
Revision:
40:ba083993b481
Child:
46:0de1f3c7d118
Splited classes into multiple .cpps / .h files.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
FairyMental 40:ba083993b481 1 class Measure {
FairyMental 40:ba083993b481 2 public:
FairyMental 40:ba083993b481 3 float temperature;
FairyMental 40:ba083993b481 4 float humidity;
FairyMental 40:ba083993b481 5 float pressure;
FairyMental 40:ba083993b481 6
FairyMental 40:ba083993b481 7 //Constructor
FairyMental 40:ba083993b481 8 Measure(float f, float h, float p);
FairyMental 40:ba083993b481 9 Measure();
FairyMental 40:ba083993b481 10 };