Base library for various projects.

Dependents:   LEDFun NetTester

Base library for various projects.

Functions.h

Committer:
Searle95
Date:
2013-08-01
Revision:
2:a3deb705b78e
Parent:
1:a5f21c409f51

File content as of revision 2:a3deb705b78e:

#ifndef FUNCTIONS_H
#define FUNCTIONS_H

class Functions {

public:

    /*Display revision details and initialise lcd screen*/
    void Intro();
        
    /*Take input from pc keyboard through serial and control lcd contrast using 'u' and 'd'*/
    void ContrastChange();
    
    /*Create and display a loading screen*/
    void Loading();
    
    /*Flash LED's to show the reading of packets*/
    void ReadLED();
    
    /*Flash LED's to show the end of packet reading*/
    void FinishLED();
    
    /*Read incoming broadcast packets and diplay source, desination, buffer and size on pc screen*/
    void Packets();
    
    /*Retreive and display current IP address on lcd screen*/
    void IPSettings();
    
    /*On z key press restart system*/
    void SystemRestart();
};

#endif