James Cummins / Mbed 2 deprecated el17jnc

Dependencies:   mbed

main.cpp

Committer:
JamesCummins
Date:
2019-03-27
Revision:
0:7c96d84b673e
Child:
1:99d524f81566

File content as of revision 0:7c96d84b673e:

/*
ELEC2645 Embedded Systems Project
School of Electronic & Electrical Engineering
University of Leeds
Name: James Nathan Cummins
Username: el17jnc
Student ID Number: 201096364
Date: 22/03/19
*/

#include "Gamepad.h"
#include "mbed.h"
#include "StartMenu.h"

Gamepad gamepad();
N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11);
StartMenu startmenu();

int main(){
    gamepad.init();
    lcd.init();
    startmenu.welcomeMsg();
}
    
    
    
    
    
    
    
}