Group PAG / Mbed OS PAG-CourseWork-NicksEdits

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Reading.h Source File

Reading.h

00001 #ifndef Reading_H
00002 #define Reading_H
00003 #include "Clock.h"
00004 #include "mbed.h"//is this needed?
00005 
00006 class Reading{
00007     
00008     //variables - this is a public class
00009     public:
00010     Clock clock;
00011     float temp;
00012     float humidity;
00013     float pressure;
00014     
00015     //constructor
00016     Reading(Clock c, float t, float p, float h);
00017     Reading();
00018     };
00019 #endif