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
Diff: sine_app.cpp
- Revision:
- 48:a72a8624bf2d
- Parent:
- 47:124bc7d77d5a
- Child:
- 49:da7b177b5245
diff -r 124bc7d77d5a -r a72a8624bf2d sine_app.cpp --- a/sine_app.cpp Fri Dec 18 13:19:37 2015 +0000 +++ b/sine_app.cpp Fri Dec 18 13:28:07 2015 +0000 @@ -11,9 +11,9 @@ App::start(); this->analogOut->write(this->amplitude/2.95f); this->timer.start(); - float amplitude; - amplitude = 2.95; - if ( amplitude > 2.95f ) { + + amplitude = 2.95f; + if ( this->amplitude > 2.95f ) { this->analogOut->write(0); } else { this->analogOut->write(this->amplitude/2.95f);}