Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Settings/Settings.h
- Revision:
- 43:d43759dbddb9
- Child:
- 44:2d957de3bce3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Settings/Settings.h Mon May 18 10:14:27 2020 +0000 @@ -0,0 +1,32 @@ +#ifndef SETTINGS_H +#define SETTINGS_H + +// Included libraries ---------------------------------------------------------- +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +/** Settings class + * @brief Change change contrast, control method + * @author Benjamin Evans, University of Leeds + * @date May 2020 + */ +class Settings{ + public: + /** Constructor */ + Settings(); + + /** Destructor */ + ~Settings(); + + /** Initalises Settings*/ + void init(); + + // Accessors and mutators -------------------------------------------------- + + private: + + // Varibles ---------------------------------------------------------------- + +}; +#endif \ No newline at end of file