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 Gamepad N5110
main.h
- Committer:
- el17arm
- Date:
- 2019-03-11
- Revision:
- 1:c80162894831
- Parent:
- 0:9e5f9e1c8ef9
- Child:
- 2:ba653520a140
File content as of revision 1:c80162894831:
#ifndef MAIN_H #define MAIN_H #include "mbed.h" #include "N5110.h" #include "Joystick.h" //objects defined in main file, removes need to define multiple times extern N5110 lcd; extern Joystick joystick; extern AnalogIn pot0; extern DigitalIn joy_button; //function prototypes void init(); void contrast(); #endif