Dmitrijs Griskovs / Mbed 2 deprecated el17dg

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.h Source File

main.h

00001 #ifndef MAIN_H
00002 #define MAIN_H
00003 
00004 #include "mbed.h"
00005 #include "N5110.h"
00006 #include "Gamepad.h"
00007 #include "models.h"
00008 
00009 /** 
00010  * Global variable readings from the gamepad are shared for all the files to use.
00011  */
00012 extern N5110 lcd;
00013 extern Gamepad gamepad;
00014 extern AnalogIn pot;
00015 extern AnalogIn x_dir;
00016 extern AnalogIn y_dir;
00017 
00018 static const int fps = 10;
00019 
00020 
00021 
00022 
00023 #endif