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.
PullDown.cpp
- Committer:
- domemort
- Date:
- 2021-11-03
- Revision:
- 0:2f3bedf8ba32
File content as of revision 0:2f3bedf8ba32:
#include "mbed.h" DigitalOut led(D7); DigitalIn bottone(D4); int main(){ bottone.mode(PullDown); while(1){ if (bottone==1){ led=1; } else led=0; } }