Base library for various projects.

Dependents:   LEDFun NetTester

Base library for various projects.

Functions.h

Committer:
Searle95
Date:
2013-08-01
Revision:
0:a2d01ba1a81b
Child:
1:a5f21c409f51

File content as of revision 0:a2d01ba1a81b:

#ifndef FUNCTIONS_H
#define FUNCTIONS_H

class Functions {

public:
    /*Display revision details and initialise lcd screen*/
    void Intro();
    
    /*Display brightness control commands*/
    void Commands();

    /*Create and display a loading screen*/
    void Loading();
    
    /*Take input from pc keyboard through serial and control led brightness using numerous keys*/
    void LEDAndRestart();
};

#endif