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
Fork of el17dg by
main/main.h
- Committer:
- Noximilien
- Date:
- 2019-03-11
- Revision:
- 9:5ad5501c702e
- Parent:
- 8:c18c240665aa
- Child:
- 14:e8de27c4d0d4
File content as of revision 9:5ad5501c702e:
#ifndef MAIN_H #define MAIN_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" //Global variables extern N5110 lcd; extern Gamepad gamepad; extern AnalogIn pot; extern AnalogIn x_dir; extern AnalogIn y_dir; static const int screen_width = 84; static const int screen_height = 48; #endif