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.
Leds/LEDs.h
- Committer:
- HenryWTriff
- Date:
- 2020-02-19
- Revision:
- 6:5f76dd718dc3
- Child:
- 7:2ce6e90f6d47
File content as of revision 6:5f76dd718dc3:
#ifndef LEDS_H #define LEDS_H #include "mbed.h" #include "Gamepad.h" #include "N5110.h" #include "FXOS8700CQ.h" #include "Graphics.h" #include "Controls.h" #include "Mechanics.h" #include "Menu.h" #include "Ghost.h" #include <string> class LEDs { public: void Speed(bool leds_on, float speed, float max_speed, Gamepad &Device); void Start_Sequence(bool leds_on, int state, Gamepad &Device); void Clear(Gamepad &Device); private: }; #endif