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 DigitalOut led(D2); 00003 AnalogIn CDS(A0); 00004 00005 int main() { 00006 float val; 00007 while(1) { 00008 val=CDS.read(); 00009 printf("%f\n",val); 00010 wait(0.2); 00011 if(val<0.4f){ 00012 led=0; 00013 } 00014 else if(val>=0.4f){ 00015 led=1; 00016 } 00017 } 00018 }
Generated on Wed Jul 20 2022 04:52:03 by
1.7.2