3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
niallfrancis
Date:
Sat May 13 17:35:58 2017 +0000
Revision:
85:422d0a1b95cf
Parent:
82:668b51a39148
Finished commenting classes;

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:
aburch1 82:668b51a39148 6 float temperature;
aburch1 82:668b51a39148 7 float humidity;
aburch1 82:668b51a39148 8 float pressure;
FairyMental 40:ba083993b481 9
FairyMental 46:0de1f3c7d118 10 LocalDate date;
FairyMental 46:0de1f3c7d118 11
aburch1 82:668b51a39148 12 Measure(float f, float h, float p);
FairyMental 40:ba083993b481 13 Measure();
aburch1 82:668b51a39148 14 Measure(LocalDate d, float f, float h, float p);
FairyMental 40:ba083993b481 15 };