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:
- akumagame
- Date:
- 2020-04-24
- Revision:
- 7:f313fb383b37
- Parent:
- 6:14523b016fd5
File content as of revision 7:f313fb383b37:
#include "mbed.h" Serial com1(USBTX, USBRX); DigitalIn bot(PTC6); void boton(int bar) { if(bar==0) { com1.printf("El boton esta siendo presionado\n"); } else { com1.printf("El boton esta no esta siendo presionado\n" ); } } int main() { while(1) { int x; x = bot.read(); boton(x); } }