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@4:5d531bd3c4ea, 2015-10-20 (annotated)
- Committer:
- Oschofield
- Date:
- Tue Oct 20 09:53:16 2015 +0000
- Revision:
- 4:5d531bd3c4ea
- Parent:
- 3:8dca756d9804
- Child:
- 7:1e9cd1481e80
changed read_ms to actual float value;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Oschofield | 1:16b0f2898739 | 1 | #include "button.h" //header file included |
Oschofield | 3:8dca756d9804 | 2 | #include "mbed.h" |
Oschofield | 1:16b0f2898739 | 3 | |
Oschofield | 1:16b0f2898739 | 4 | Button::Button(string s){ |
Oschofield | 1:16b0f2898739 | 5 | if (s == "user"){ |
Oschofield | 1:16b0f2898739 | 6 | pin = new DigitalIn(PA_0); |
Oschofield | 1:16b0f2898739 | 7 | } |
Oschofield | 1:16b0f2898739 | 8 | } |
Oschofield | 1:16b0f2898739 | 9 | |
Oschofield | 2:e3cd1e0c3b78 | 10 | bool Button::ifPressed(){ |
Oschofield | 2:e3cd1e0c3b78 | 11 | return *pin; |
Oschofield | 3:8dca756d9804 | 12 | } |
Oschofield | 3:8dca756d9804 | 13 | |
Oschofield | 3:8dca756d9804 | 14 | float Button::Duration(){ |
Oschofield | 3:8dca756d9804 | 15 | Timer timer; |
Oschofield | 3:8dca756d9804 | 16 | float duration = 0; |
Oschofield | 3:8dca756d9804 | 17 | timer.reset(); |
Oschofield | 3:8dca756d9804 | 18 | while (duration==0){ |
Oschofield | 3:8dca756d9804 | 19 | while (*pin==1){ |
Oschofield | 3:8dca756d9804 | 20 | timer.start(); |
Oschofield | 3:8dca756d9804 | 21 | } |
Oschofield | 4:5d531bd3c4ea | 22 | duration= 0.1*timer.read_ms(); |
Oschofield | 3:8dca756d9804 | 23 | timer.stop(); |
Oschofield | 3:8dca756d9804 | 24 | } |
Oschofield | 3:8dca756d9804 | 25 | return duration; |
Oschofield | 3:8dca756d9804 | 26 | } |
Oschofield | 3:8dca756d9804 | 27 |