MAIN

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Data.hpp

Committer:
J_Satchell
Date:
2017-05-15
Revision:
37:13f74964a045
Parent:
36:af6abc6f7590

File content as of revision 37:13f74964a045:

#ifndef DATA_H
#define DATA_H
#include "mbed.h"
#include "rtos.h"



class Data
{
    public:
        float tempCelsius;
        float humi;
        float pressure;
        time_t logtime;
};

#endif