Kevin Rhyne / Whiffy

Dependencies:   4DGL-uLCD-SE mbed

src/TestSuite.cpp

Committer:
kevinrhyne
Date:
2015-10-19
Revision:
13:ef68cbcb4e9a
Parent:
11:419e5d18d42b
Child:
14:8d31d304eeb3

File content as of revision 13:ef68cbcb4e9a:

#include "TestSuite.h"
#include "LEDControl.h"
#include "LCDControl.h"
#include "WifiControl.h"
#include "Reporter.h"

void TestSuite::ReporterTest(){ 

    Reporter report;

}

void TestSuite::LEDTest(){
     
     LEDControl led;
     led.update(20);
     wait(2);
     led.update(0);
};  

void TestSuite::LCDTest(){
    LCDControl lcd;
    
    lcd.printStrength(10);
    
    
};

void TestSuite::WifiTest(){
    
    WifiControl wifi;
    wifi.ESPconfig();
    

    
    }