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.
Dependencies: mbed
Fork of 06-01-Uebung by
main.cpp
- Committer:
- stefan1691
- Date:
- 2015-02-21
- Revision:
- 3:6dfb04216698
- Parent:
- 2:83598aa88c56
- Child:
- 4:be63bf4e87aa
File content as of revision 3:6dfb04216698:
/** 6.1 Licht bei Dämmerung einschalten */ #include "mbed.h" AnalogIn light( A1 ); DigitalOut led( D10 ); // 1. LED auf thShield int main() { while ( true ) { // fuer Dunklen Kursraum if ( light < 0.01f ) led = 1; else led = 0; wait( 1.0 ); } }