Helios Lyons / Mbed 2 deprecated ELEC2645_Project_mc18hal

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 /* 
00002 ELEC2645 Embedded Systems Project
00003 School of Electronic & Electrical Engineering
00004 University of Leeds
00005 2019/20
00006 
00007 Name: Helios Ael Lyons
00008 Username: mc18hal
00009 Student ID Number: 201239214
00010 Date: 24th March 2020
00011 */
00012 
00013 /** Main
00014 * @brief Main game functions and loop
00015 * @author Helios A. Lyons
00016 * @date March, 2020
00017 */
00018 
00019 // includes
00020 #include "mbed.h"
00021 #include "Gamepad.h"
00022 #include "N5110.h"
00023 
00024 
00025 // objects
00026 Gamepad pad;
00027 N5110 lcd;
00028 
00029 int main()
00030 {
00031     
00032 }
00033