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-11-12
- Revision:
- 12:08a1971c9441
- Parent:
- 11:444afcb2f59f
- Child:
- 13:4b9c32ba0572
File content as of revision 12:08a1971c9441:
#include "button.h" //header file included Button::Button(string s){ if (s == "user"){ pin = new DigitalIn(PA_0); } } bool Button::ifPressed(){ return *pin; } float Button::getPulse(float timeout) { while(this->ifPressed()== false){ //DO NADA } Timer timer; timer.start(); while(this->ifPressed()== false){ if (timeout != -1.0f && timer.read() > timeout){ return -1.0f; } } timer.stop(); return timer.read(); }