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 3875_Individualproject
main/main.h
- Committer:
- jamesheavey
- Date:
- 2020-02-04
- Revision:
- 0:df5216b20861
- Child:
- 17:77b8515a9568
File content as of revision 0:df5216b20861:
#ifndef MAIN_H #define MAIN_H #include "m3pi.h" #include "mbed.h" // API extern m3pi robot; // LEDs extern BusOut leds; // Buttons extern DigitalIn button_A; extern DigitalIn button_B; extern DigitalIn button_X; extern DigitalIn button_Y; extern DigitalIn button_enter; extern DigitalIn button_back; // Potentiometers extern AnalogIn pot_P; extern AnalogIn pot_I; extern AnalogIn pot_D; extern AnalogIn pot_S; // Globals // Prototypes #endif