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-13
- Revision:
- 2:7b09af16aee4
- Parent:
- 1:f01d67bcb993
- Child:
- 3:32058377a827
File content as of revision 2:7b09af16aee4:
#include "mbed.h" Serial com1(USBTX, USBRX); DigitalIn enable(PTA4); void bot(int b) { if(enable == 1) { com1.printf("El boton esta siendo presionado"); } else { com1.printf("El boton esta no esta siendo presionado" ); } } int main() { com1.printf("%i",bot); }