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
main.cpp
- Committer:
- selena13
- Date:
- 2020-09-08
- Revision:
- 30:0c89e3f9bf05
- Parent:
- 29:2146e1bb7b4a
File content as of revision 30:0c89e3f9bf05:
#include "mbed.h"
DigitalOut led (D2);
DigitalIn BP (D3);
int main() {
while(1) {
if (BP==1)
{
led = 1;
}
else
{
led =0;
}
}
}