3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
Netaphous
Date:
Sun Apr 09 23:41:45 2017 +0000
Branch:
feature/listOptimisation
Revision:
65:3723d2729b68
Parent:
46:0de1f3c7d118
Child:
68:d3765f93c16a
Implemented CircularArray in the place of the linked list in the main 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 40:ba083993b481 5 public:
FairyMental 40:ba083993b481 6 float temperature;
FairyMental 40:ba083993b481 7 float humidity;
FairyMental 40:ba083993b481 8 float pressure;
FairyMental 40:ba083993b481 9
FairyMental 46:0de1f3c7d118 10 LocalDate date;
FairyMental 46:0de1f3c7d118 11
FairyMental 40:ba083993b481 12 //Constructor
FairyMental 40:ba083993b481 13 Measure(float f, float h, float p);
FairyMental 40:ba083993b481 14 Measure();
FairyMental 46:0de1f3c7d118 15 Measure(LocalDate d, float f, float h, float p);
FairyMental 40:ba083993b481 16 };