Year Two Project ELEC 2645: Embedded Systems Project Portable Weather Station

Dependencies:   BMP180 ConfigFile N5110 PowerControl beep mbed

Committer:
OHstin
Date:
Mon May 11 15:25:52 2015 +0000
Revision:
0:da2b8c7a1ec1
Completed Weather Station

Who changed what in which revision?

UserRevisionLine numberNew contents of line
OHstin 0:da2b8c7a1ec1 1 #include "WeatherApp.h"
OHstin 0:da2b8c7a1ec1 2
OHstin 0:da2b8c7a1ec1 3 int main(){
OHstin 0:da2b8c7a1ec1 4
OHstin 0:da2b8c7a1ec1 5 WeatherApp weather; // create weather application object
OHstin 0:da2b8c7a1ec1 6 weather.run(); // run the weather application
OHstin 0:da2b8c7a1ec1 7 }