MTU COMP71004 Summer 2021 / Mbed 2 deprecated lect7_2_analogOut

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 AnalogOut aout(p18);
00004 
00005 int main() {
00006     while(1) {
00007         for(int i=0; i<100; i++){
00008             aout = i/100;
00009             printf("i:%d aout = %f \r\n",i, aout.read());
00010             wait(3);
00011         }
00012     }
00013 }