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:
aburch1
Date:
2017-05-11
Revision:
82:668b51a39148
Parent:
81:996c0a3319b4
Child:
85:422d0a1b95cf

File content as of revision 82:668b51a39148:

#include "LocalDate.h"

class Measure
{
    //Public properties / methods
    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);
};