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:
36:af6abc6f7590
Child:
37:13f74964a045

File content as of revision 36:af6abc6f7590:

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



class Data
{
    public:
        float tempCelsius;
        float humi;
        float pressure;
        uint32_t seconds, minutes, hours; 
};

#endif