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.
PowerControl.h
- Committer:
- kwasymodo
- Date:
- 2017-05-10
- Revision:
- 0:f7568c04c1c3
- Child:
- 2:1e3291e8294d
File content as of revision 0:f7568c04c1c3:
#ifndef POWER_H #define POWER_H #include "mbed.h" /** Power class * Used to control the buck converters */ class PowerControl { public: /** Create PowerControl instance @param greenButton @param redButton */ PowerControl(PinName greenButton, PinName redButton); private: /** goSleep sleep */ void goSleep(void); InterruptIn _greenButton; InterruptIn _redButton; }; #endif //POWER_H