Matis Requis 201241242

Dependencies:   mbed

Tempest Game

Game Screen

https://os.mbed.com/media/uploads/MatisRequis/tempest_board_wiki.png The board is made of 12 columns. The Hero stays at the top of the column

Game Controls

https://os.mbed.com/media/uploads/MatisRequis/gamepad_buttons.png

To control the hero spaceship point the joystick to the column you want the hero to go to.

Press the A button to shoot a bullet in the column you are currently in.

main.cpp

Committer:
eencae
Date:
2020-02-03
Revision:
0:b7f1f47bb26a
Child:
1:03d1c29c2f8a

File content as of revision 0:b7f1f47bb26a:

/* 
ELEC2645 Embedded Systems Project
School of Electronic & Electrical Engineering
University of Leeds
2019/20

Name:
Username:
Student ID Number:
Date:
*/

// includes
#include "mbed.h"
#include "Gamepad.h"
#include "N5110.h"


// objects
Gamepad pad;
N5110 lcd;

int main()
{
    
}