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
- Committer:
- icserny
- Date:
- 2015-10-12
- Revision:
- 0:b5f81eb006d4
File content as of revision 0:b5f81eb006d4:
/* led_button - difital I/O example
* drive LED1 by a pushbutton tied between D3 and GND
*/
#include "mbed.h"
DigitalIn mybutton(D3,PullUp);
DigitalOut myled(LED_RED);
int main()
{
while (true) {
myled = mybutton;
wait_ms(20);
}
}