Teste KL25z
Revision 0:9b04af2081c3, committed 2019-02-27
- Comitter:
- fabiosouzaembarcados
- Date:
- Wed Feb 27 21:55:28 2019 +0000
- Child:
- 1:ae72c49f04bb
- Commit message:
- public
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Wed Feb 27 21:55:28 2019 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut myled(LED3);
+
+int main() {
+ while(1) {
+ myled = 1;
+ wait(0.2);
+ myled =0;
+ wait(0.2);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Wed Feb 27 21:55:28 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/aa5281ff4a02 \ No newline at end of file
Fábio Souza