Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
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.
main.cpp
00001 #include "mbed.h" 00002 00003 AnalogOut Aout(p18); 00004 AnalogIn pot1(p19); 00005 00006 int main() 00007 { 00008 while(1) { 00009 for(float i=0.0; i<1.0; i+=0.1) { 00010 Aout = i; 00011 wait(0.00001+(0.0001*pot1.read())); 00012 } 00013 } 00014 }
Generated on Tue Jul 12 2022 12:10:53 by doxygen 1.7.2