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:
- logostarr
- Date:
- 2022-09-08
- Revision:
- 0:b4c0b091cd4b
File content as of revision 0:b4c0b091cd4b:
#include "mbed.h"
AnalogOut Aout(p18);
float i;
int main() {
while(1) {
for(int i = 0;i < 1; i=+0.005) {
Aout= 0.5 + 0.5 * sin(i * 3.14159);
wait(0.001);
}
}
}