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.
Front/Front.h
- Committer:
- lukeocarwright
- Date:
- 2020-05-05
- Revision:
- 7:33cb5f2db1ee
- Child:
- 8:f305ea78b2b1
File content as of revision 7:33cb5f2db1ee:
#ifndef FRONT_H #define FRONT_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "menu.h" /** Front class * @author Luke Cartwright, University of Leeds * @brief manages front pannel of Synth * @date May 2020 */ class Front { public: //variables int submenu; //methods //constructor Front(); //destructior ~Front(); //initial setup of front panel void frontsetup(N5110 &lcd, Gamepad &pad, int submenu); //runs whole front pannel void frontrun(N5110 &lcd, Gamepad &pad, int submenu); private: //variables //methods //void frontsetup(N5110 &lcd,int submenu); //prints fader void printfader(N5110 &lcd,int x, int y); void printwav(N5110 &lcd, int submenu); }; #endif