cc

Dependencies:   mbed TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Exercice_4.cpp Source File

Exercice_4.cpp

00001 /*
00002 //Sawtooth waveform on DAC output to view on oscilloscope
00003  
00004 #include "mbed.h" 
00005 AnalogOut Aout(p18); 
00006 float i; 
00007 int main() { 
00008   while(1)  
00009   { 
00010     for (i=0;i<1;i=i+0.1) 
00011     { 
00012       Aout.write(i);  
00013       wait(0.001);  
00014     } 
00015   } 
00016 } */