All there but errors need fixing

Dependencies:   mbed

Overview:

Rookie Tetris is a jigsaw style game based on the classic Tetris.

A block will appear at the top of the screen, you must move it (your options for movement are left, right and down - you cannot move up the board). The block will stop when it if placed either on the floor of the board or on-top of another block.

Your goal is to fill a complete row of the board with the blocks; when you do so the row will delete and the pattern above it will drop down. The game is over when your pattern is tall enough to reach to the top of the board!

Controls:

Use the joystick to move your block! Your block cannot move out of the parameters of the board.

Pot 2 controls the contrast of the screen.

Committer:
eencae
Date:
Mon Feb 03 14:26:29 2020 +0000
Revision:
0:b7f1f47bb26a
Child:
1:35dba0833c7d
ELEC2645 starter project

Who changed what in which revision?

UserRevisionLine numberNew contents of line
eencae 0:b7f1f47bb26a 1 /*
eencae 0:b7f1f47bb26a 2 ELEC2645 Embedded Systems Project
eencae 0:b7f1f47bb26a 3 School of Electronic & Electrical Engineering
eencae 0:b7f1f47bb26a 4 University of Leeds
eencae 0:b7f1f47bb26a 5 2019/20
eencae 0:b7f1f47bb26a 6
eencae 0:b7f1f47bb26a 7 Name:
eencae 0:b7f1f47bb26a 8 Username:
eencae 0:b7f1f47bb26a 9 Student ID Number:
eencae 0:b7f1f47bb26a 10 Date:
eencae 0:b7f1f47bb26a 11 */
eencae 0:b7f1f47bb26a 12
eencae 0:b7f1f47bb26a 13 // includes
eencae 0:b7f1f47bb26a 14 #include "mbed.h"
eencae 0:b7f1f47bb26a 15 #include "Gamepad.h"
eencae 0:b7f1f47bb26a 16 #include "N5110.h"
eencae 0:b7f1f47bb26a 17
eencae 0:b7f1f47bb26a 18
eencae 0:b7f1f47bb26a 19 // objects
eencae 0:b7f1f47bb26a 20 Gamepad pad;
eencae 0:b7f1f47bb26a 21 N5110 lcd;
eencae 0:b7f1f47bb26a 22
eencae 0:b7f1f47bb26a 23 int main()
eencae 0:b7f1f47bb26a 24 {
eencae 0:b7f1f47bb26a 25
eencae 0:b7f1f47bb26a 26 }
eencae 0:b7f1f47bb26a 27