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.
button.cpp
- Committer:
- Oschofield
- Date:
- 2015-10-15
- Revision:
- 2:e3cd1e0c3b78
- Parent:
- 1:16b0f2898739
- Child:
- 3:8dca756d9804
File content as of revision 2:e3cd1e0c3b78:
#include "button.h" //header file included Button::Button(string s){ if (s == "user"){ pin = new DigitalIn(PA_0); } } bool Button::ifPressed(){ return *pin; }