help / Mbed 2 deprecated Info_2_TD

Dependencies:   mbed TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Exercice.cpp Source File

Exercice.cpp

00001 /*#include "mbed.h"
00002 AnalogOut pain(p18);
00003 int main()
00004 {
00005     
00006     int i,j;
00007     while(1) {
00008         for(i=0;i<1;i=i+0.1){
00009             pain.write(i);
00010             wait(0.2);
00011         }
00012         for(j=1;j>0;j=j-0.1){
00013             pain.write(j);
00014             wait(0.2);
00015         }
00016     }
00017 }*/