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.
Exercice_6.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.01) 00011 { 00012 Aout.write(i); 00013 wait(0.001); 00014 } 00015 for (i=1;i>0;i=i-0.01) 00016 { 00017 Aout.write(i); 00018 wait(0.001); 00019 } 00020 } 00021 } */
Generated on Wed Jul 13 2022 07:32:21 by
1.7.2