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-20
- Revision:
- 0:531fa4200009
- Child:
- 1:4ef719bf702c
File content as of revision 0:531fa4200009:
/** 3.1 Neues Programm mittels Assistenten erstellen
*/
#include "mbed.h"
DigitalIn   button1( PTC9 );        // 1. Taster auf thShield   
DigitalOut  led( D10 );             // 1. LED auf thShield
int main()
{
    while ( true ) 
    {
        if  ( button1 == 0 )        // Button gedrueckt
            led = 1;
        else
            led = 0;
    }
}
            
    