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:
Netaphous
Date:
2017-04-09
Branch:
feature/listOptimisation
Revision:
65:3723d2729b68
Parent:
46:0de1f3c7d118
Child:
68:d3765f93c16a

File content as of revision 65:3723d2729b68:

#include "LocalDate.h"

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