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.
Dependencies: mbed
main.cpp
- Committer:
- el17my
- Date:
- 2020-04-28
- Revision:
- 19:14c5427b30d1
- Parent:
- 16:ccd6f707dc79
- Child:
- 21:349c70c8a7de
File content as of revision 19:14c5427b30d1:
/*
ELEC2645 Embedded Systems Project
School of Electronic & Electrical Engineering
University of Leeds
2019/20
Name:Yao mochu
Username:el17my
Student ID Number:201199854
Date:2020/4/28
*/
// includes
#include "mbed.h"
#include "Gamepad.h"
#include "N5110.h"
#include "menu.h"
// objects
Gamepad gamepad;
N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11);
menu _menu;
int main()
{ gamepad.init();
_menu.init();
lcd.init();
lcd.normalMode();
lcd.setBrightness(0.5);
while(1) {
lcd.setContrast(gamepad.read_pot()); // Contrast is controlled by pot.
lcd.clear();
_menu.run_engine(lcd, gamepad);
lcd.refresh();
wait(0.01); }
}