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.
Fork of ele350 by
button.h
- Committer:
- GGHHHH
- Date:
- 2015-10-22
- Revision:
- 2:9a0770c4fdd6
File content as of revision 2:9a0770c4fdd6:
#ifndef _BUTTON_H_ #define _BUTTON_H_ #include "mbed.h" #include <string> class Button { private: DigitalIn* pin; public: Button(string name); bool isPressed(); }; #endif