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 TouchButton by
Revision 1:5eb472334273, committed 2015-03-23
- Comitter:
- taghoter
- Date:
- Mon Mar 23 20:53:19 2015 +0000
- Parent:
- 0:2afd6e977c5b
- Commit message:
- PresedButton -> PressedButton
Changed in this revision
TouchButton.cpp | Show annotated file Show diff for this revision Revisions of this file |
TouchButton.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 2afd6e977c5b -r 5eb472334273 TouchButton.cpp --- a/TouchButton.cpp Sat Jul 13 14:14:40 2013 +0000 +++ b/TouchButton.cpp Mon Mar 23 20:53:19 2015 +0000 @@ -4,7 +4,7 @@ TSISensor tsi; -int TouchButton::PresedButton(void) +int TouchButton::PressedButton(void) { if(tsi.readPercentage()<0.01)
diff -r 2afd6e977c5b -r 5eb472334273 TouchButton.h --- a/TouchButton.h Sat Jul 13 14:14:40 2013 +0000 +++ b/TouchButton.h Mon Mar 23 20:53:19 2015 +0000 @@ -26,7 +26,7 @@ * Read the pressed button number * */ - int PresedButton(void); + int PressedButton(void); };