3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
FairyMental
Date:
Thu Apr 13 11:07:14 2017 +0000
Revision:
68:d3765f93c16a
Parent:
65:3723d2729b68
Commented some more code.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
FairyMental 46:0de1f3c7d118 1 #include "LocalDate.h"
FairyMental 46:0de1f3c7d118 2
Netaphous 65:3723d2729b68 3 class Measure
Netaphous 65:3723d2729b68 4 {
FairyMental 68:d3765f93c16a 5 //Public properties / methods
FairyMental 68:d3765f93c16a 6 public:
FairyMental 68:d3765f93c16a 7 float temperature;
FairyMental 68:d3765f93c16a 8 float humidity;
FairyMental 68:d3765f93c16a 9 float pressure;
FairyMental 40:ba083993b481 10
FairyMental 46:0de1f3c7d118 11 LocalDate date;
FairyMental 46:0de1f3c7d118 12
FairyMental 40:ba083993b481 13 //Constructor
FairyMental 40:ba083993b481 14 Measure(float f, float h, float p);
FairyMental 40:ba083993b481 15 Measure();
FairyMental 46:0de1f3c7d118 16 Measure(LocalDate d, float f, float h, float p);
FairyMental 40:ba083993b481 17 };