MBED_BEGINNERS_LED_BLINK_PROGRAM LED_BLINKING USING MBED OS -- THE MBED PLATFORM TARGET: STM32L476 NUCLEO NUCLEO-64 BOARD CREATED BY : JAYDEEP SHAH --radhey04ec@gmail.com JAYDEEP SHAH EC ENGINEER

LED BLINKING PROGRAM

Welcome , if you are fetching this code that means either you are beginner on Mbed Platform or on STM 32.

Try to fetch my notebook page ,where I have mentioned more detail information.

Best of Luck!!!

Jaydeep shah radhey04ec@gmail.com

Revision:
0:63db7dc30429
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jul 06 06:10:36 2020 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+int main()
+{
+    
+    DigitalOut led(LED3);
+
+    while (true) {
+        led = 1;
+        wait(0.5);
+        led = 0;
+        wait(0.5);
+    }
+}