ELEC2645 (2018/19) / Mbed 2 deprecated ml16c5l

Dependencies:   mbed

Committer:
ml16c5l
Date:
Mon Mar 25 10:56:27 2019 +0000
Revision:
1:63db7ec60700
Parent:
0:39232bb909bf
Child:
3:5d860d0d589e
path for game

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ml16c5l 1:63db7ec60700 1 /*
ml16c5l 1:63db7ec60700 2 ELEC2645 Embedded Systems Project
ml16c5l 1:63db7ec60700 3 School of Electronic & Electrical Engineering
ml16c5l 1:63db7ec60700 4 University of Leeds
ml16c5l 1:63db7ec60700 5 Name:
ml16c5l 1:63db7ec60700 6 Username:
ml16c5l 1:63db7ec60700 7 Student ID Number:
ml16c5l 1:63db7ec60700 8 Date:
ml16c5l 1:63db7ec60700 9 */
ml16c5l 1:63db7ec60700 10
ml16c5l 1:63db7ec60700 11 #include "mbed.h"
ml16c5l 1:63db7ec60700 12 #include "Gamepad.h"
ml16c5l 1:63db7ec60700 13 #include "N5110.h"
ml16c5l 1:63db7ec60700 14
ml16c5l 1:63db7ec60700 15
ml16c5l 1:63db7ec60700 16 /////////////// structs /////////////////
ml16c5l 1:63db7ec60700 17 struct UserInput {
ml16c5l 1:63db7ec60700 18 Direction d;
ml16c5l 1:63db7ec60700 19 float mag;
ml16c5l 1:63db7ec60700 20 };
ml16c5l 1:63db7ec60700 21 /////////////// objects ///////////////
ml16c5l 1:63db7ec60700 22 N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11);
ml16c5l 1:63db7ec60700 23 Gamepad pad;