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.
Revision 0:09e28076eda0, committed 2020-11-01
- Comitter:
- dnluna_
- Date:
- Sun Nov 01 00:01:02 2020 +0000
- Commit message:
- P3E2SDR2020;
Changed in this revision
diff -r 000000000000 -r 09e28076eda0 FXOS8700Q.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FXOS8700Q.lib Sun Nov 01 00:01:02 2020 +0000 @@ -0,0 +1,1 @@ +http://developer.mbed.org/teams/Freescale/code/FXOS8700Q/#aee7dea904e2
diff -r 000000000000 -r 09e28076eda0 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Nov 01 00:01:02 2020 +0000 @@ -0,0 +1,25 @@ +#include "mbed.h" +#include <iostream> +#include <stdio.h> + + +Serial com1(USBTX, USBRX); +DigitalIn boton1(p6); +DigitalOut myled(p5); + +int main() +{ + while(1) + { + if (boton1.read()==0) + { + myled=1; + } + + else{ + myled=0; + } + } +} + + \ No newline at end of file
diff -r 000000000000 -r 09e28076eda0 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Nov 01 00:01:02 2020 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file