Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Coursework by
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
Generated on Tue Jul 12 2022 21:22:38 by
1.7.2
