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.
Fork of DigitalOut by
main.cpp
- Committer:
- marcel1691
- Date:
- 2015-03-23
- Revision:
- 0:3ec5cf718e17
- Child:
- 2:a61141b172c0
File content as of revision 0:3ec5cf718e17:
/** Mittels DigitalOut kann eine Positive Spannung an einem Pin erzeugt werden.
*/
#include "mbed.h"
DigitalOut led( D10 );
int main()
{
while(1)
{
led.write( 0 );
wait(0.8);
led.write( 1 );
wait(1.0);
}
}
