Initial publish

Dependencies:   mbed

Fork of el17dg by Dmitrijs Griskovs

Committer:
Noximilien
Date:
Sun Mar 03 23:36:34 2019 +0000
Revision:
4:02c63aaa2df9
Parent:
3:10918b0f7a7d
Child:
8:c18c240665aa
Decided to switch to the class system (need to understand it better). Removed the parts of the menu from the main (was adviced to keep it separate). Have made it go from the menu into the game. ; To Do: the animation, setting, tutorial, in-game menu.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Noximilien 3:10918b0f7a7d 1 #ifndef MAIN_H
Noximilien 3:10918b0f7a7d 2 #define MAIN_H
Noximilien 3:10918b0f7a7d 3
Noximilien 4:02c63aaa2df9 4 #include "mbed.h"
Noximilien 4:02c63aaa2df9 5 #include "N5110.h"
Noximilien 4:02c63aaa2df9 6 #include "Gamepad.h"
Noximilien 3:10918b0f7a7d 7
Noximilien 4:02c63aaa2df9 8 //Global variables
Noximilien 4:02c63aaa2df9 9 extern N5110 lcd;
Noximilien 4:02c63aaa2df9 10 extern Gamepad gamepad;
Noximilien 4:02c63aaa2df9 11 extern AnalogIn pot;
Noximilien 4:02c63aaa2df9 12 extern AnalogIn x_dir;
Noximilien 4:02c63aaa2df9 13 extern AnalogIn y_dir;
Noximilien 4:02c63aaa2df9 14
Noximilien 4:02c63aaa2df9 15 #endif