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.
Dependencies: mbed
main.cpp
- Committer:
- dfraj
- Date:
- 2016-11-10
- Revision:
- 0:ae5888ab3999
File content as of revision 0:ae5888ab3999:
#include "mbed.h"
AnalogOut Aout(p18);
int main() {
float i;
while(1) {
for(i = 0; i < 1; i = i + 0.001){
Aout = i;
wait(1.0E-5);
}
for(i = 1; i >= 0; i = i - 0.001){
Aout = i;
wait(1.0E-5);
}
}
}