3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Measure/Measure.h

Committer:
niallfrancis
Date:
2017-05-13
Revision:
85:422d0a1b95cf
Parent:
82:668b51a39148

File content as of revision 85:422d0a1b95cf:

#include "LocalDate.h"

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