Kevin Rhyne / Whiffy

Dependencies:   4DGL-uLCD-SE mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Reporter.h Source File

Reporter.h

00001 #ifndef REPORTER_H
00002 #define REPORTER_H
00003 
00004 #include <stdio.h>
00005 #include <vector>
00006 #include "LCDControl.h"
00007 #include "LEDControl.h"
00008 #include "AccessPoint.h"
00009 
00010 
00011 
00012 class Reporter {
00013     public:
00014         Reporter();
00015         void update(vector<AccessPoint>, bool, string);
00016         
00017     private:
00018         bool mode;
00019         LEDControl led;
00020         LCDControl lcd;
00021         int averager(vector<AccessPoint>);
00022         
00023     
00024 };
00025 
00026 #endif