MAIN

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
J_Satchell
Date:
Mon May 15 11:38:07 2017 +0000
Revision:
37:13f74964a045
Parent:
36:af6abc6f7590
fff

Who changed what in which revision?

UserRevisionLine numberNew contents of line
J_Satchell 36:af6abc6f7590 1 #ifndef DATA_H
J_Satchell 36:af6abc6f7590 2 #define DATA_H
J_Satchell 36:af6abc6f7590 3 #include "mbed.h"
J_Satchell 36:af6abc6f7590 4 #include "rtos.h"
J_Satchell 36:af6abc6f7590 5
J_Satchell 36:af6abc6f7590 6
J_Satchell 36:af6abc6f7590 7
J_Satchell 36:af6abc6f7590 8 class Data
J_Satchell 36:af6abc6f7590 9 {
J_Satchell 36:af6abc6f7590 10 public:
J_Satchell 36:af6abc6f7590 11 float tempCelsius;
J_Satchell 36:af6abc6f7590 12 float humi;
J_Satchell 36:af6abc6f7590 13 float pressure;
J_Satchell 37:13f74964a045 14 time_t logtime;
J_Satchell 36:af6abc6f7590 15 };
J_Satchell 36:af6abc6f7590 16
J_Satchell 36:af6abc6f7590 17 #endif