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:
- el17cd
- Date:
- 2019-03-31
- Revision:
- 15:8fbbdefbe720
- Parent:
- 14:885915260e25
- Child:
- 18:8256546a3cbf
File content as of revision 15:8fbbdefbe720:
/*
ELEC2645 Embedded Systems Project
School of Electronic & Electrical Engineering
University of Leeds
Name: Christopher Doel
Username: el17cd
Student ID Number: 201146223
Date: 22/02/19
*/
#include "mbed.h"
#include "Game.h"
Serial pc(USBTX, USBRX); // tx, rx
int main()
{
pc.printf("Hello World!\n");
Game game;
game.run();
}