3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Measure.h

Committer:
FairyMental
Date:
2017-04-05
Revision:
40:ba083993b481
Child:
46:0de1f3c7d118

File content as of revision 40:ba083993b481:

class Measure {
public:    
    float temperature;    
    float humidity;
    float pressure;
    
    //Constructor
    Measure(float f, float h, float p);
    Measure();
};