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 15:53:15 2017 +0000
Revision:
82:668b51a39148
Parent:
81:996c0a3319b4
Child:
85:422d0a1b95cf
Added formatting to messages, errors now terminate the program and wait for user input to restart

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