3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
aburch1
Date:
Thu May 11 14:34:53 2017 +0000
Revision:
81:996c0a3319b4
Parent:
Measure.h@68:d3765f93c16a
Child:
82:668b51a39148
Changed the logger to use char arrays of a size 256 and fixed some issues that cropped up from this. Moved all printing statements over to use the logger

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:
aburch1 81:996c0a3319b4 7 double temperature;
aburch1 81:996c0a3319b4 8 double humidity;
aburch1 81:996c0a3319b4 9 double pressure;
FairyMental 40:ba083993b481 10
FairyMental 46:0de1f3c7d118 11 LocalDate date;
FairyMental 46:0de1f3c7d118 12
FairyMental 40:ba083993b481 13 //Constructor
aburch1 81:996c0a3319b4 14 Measure(double f, double h, double p);
FairyMental 40:ba083993b481 15 Measure();
aburch1 81:996c0a3319b4 16 Measure(LocalDate d, double f, double h, double p);
FairyMental 40:ba083993b481 17 };