código blink

Dependencies:   mbed FXOS8700Q

Files at this revision

API Documentation at this revision

Comitter:
Jeozadaque_macedo
Date:
Thu May 23 23:44:15 2019 +0000
Commit message:
codigo blink, aula de microcontroladores

Changed in this revision

FXOS8700Q.lib Show annotated file Show diff for this revision Revisions of this file
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/FXOS8700Q.lib	Thu May 23 23:44:15 2019 +0000
@@ -0,0 +1,1 @@
+http://developer.mbed.org/teams/Freescale/code/FXOS8700Q/#aee7dea904e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu May 23 23:44:15 2019 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+DigitalOut led3(LED3);
+DigitalOut led4(LED4);
+int main() {
+    while(1) {
+        led1= 1;
+        wait(0.2);
+        led1 = 0,led2= 1;
+        wait(0.2);
+        led2= 0;
+        led3= 1;
+        wait(0.2);
+        led3= 0;
+        led4= 1;
+        wait(0.2);
+        led4=0;
+        wait(0.2);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu May 23 23:44:15 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file