Base library for various projects.

Dependents:   LEDFun NetTester

Base library for various projects.

Committer:
Searle95
Date:
Thu Aug 01 09:05:54 2013 +0000
Revision:
0:a2d01ba1a81b
Child:
1:a5f21c409f51
Modified for use in this project.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Searle95 0:a2d01ba1a81b 1 #ifndef FUNCTIONS_H
Searle95 0:a2d01ba1a81b 2 #define FUNCTIONS_H
Searle95 0:a2d01ba1a81b 3
Searle95 0:a2d01ba1a81b 4 class Functions {
Searle95 0:a2d01ba1a81b 5
Searle95 0:a2d01ba1a81b 6 public:
Searle95 0:a2d01ba1a81b 7 /*Display revision details and initialise lcd screen*/
Searle95 0:a2d01ba1a81b 8 void Intro();
Searle95 0:a2d01ba1a81b 9
Searle95 0:a2d01ba1a81b 10 /*Display brightness control commands*/
Searle95 0:a2d01ba1a81b 11 void Commands();
Searle95 0:a2d01ba1a81b 12
Searle95 0:a2d01ba1a81b 13 /*Create and display a loading screen*/
Searle95 0:a2d01ba1a81b 14 void Loading();
Searle95 0:a2d01ba1a81b 15
Searle95 0:a2d01ba1a81b 16 /*Take input from pc keyboard through serial and control led brightness using numerous keys*/
Searle95 0:a2d01ba1a81b 17 void LEDAndRestart();
Searle95 0:a2d01ba1a81b 18 };
Searle95 0:a2d01ba1a81b 19
Searle95 0:a2d01ba1a81b 20 #endif