Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Reading.h

Committer:
noutram
Date:
2017-05-04
Revision:
44:2b23c7407547
Parent:
37:1a621144e73f

File content as of revision 44:2b23c7407547:

#ifndef Reading_H
#define Reading_H
#include "Clock.h"
#include "mbed.h"//is this needed?

class Reading{
    
    //variables - this is a public class
    public:
    Clock clock;
    float temp;
    float humidity;
    float pressure;
    
    //constructor
    Reading(Clock c, float t, float p, float h);
    Reading();
    };
#endif