Lab1-00_blinkyled_array_switch_lite

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
heptasat2021
Date:
Tue Aug 10 01:50:12 2021 +0000
Commit message:
Lab1-00_blinkyled_array_switch_lite

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
diff -r 000000000000 -r 9ec097cacd6a main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Aug 10 01:50:12 2021 +0000
@@ -0,0 +1,23 @@
+#include "mbed.h"
+DigitalOut myled[]={LED1, PB_1};
+int main()
+{
+    int i=0;
+    while (true) {
+        switch(i){
+            case 1:
+                myled[0] = 1;
+                break;
+            case 2:
+                myled[1] = 1;
+                break;
+            case 3:
+                myled[0] = 0;
+                myled[1] = 0;
+                i = 0;
+                break;   
+        }
+        i++;
+        wait_ms(500);
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r 9ec097cacd6a mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Aug 10 01:50:12 2021 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file