Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Reading.cpp

Committer:
RossalaTTM
Date:
2017-05-03
Revision:
37:1a621144e73f

File content as of revision 37:1a621144e73f:

#include "Reading.h"

Reading::Reading(Clock c, float t, float p, float h){
    clock = c;
    temp = t;
    pressure = p;
    humidity = h;
    }
Reading::Reading(){ 
    //clock = ???? //can't get this to work :(
    temp = 25.50;
    pressure = 1000;
    humidity = 55;
    }