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

main.cpp

Committer:
radhey04ec
Date:
2020-07-06
Revision:
0:63db7dc30429

File content as of revision 0:63db7dc30429:

#include "mbed.h"

int main()
{
    
    DigitalOut led(LED3);

    while (true) {
        led = 1;
        wait(0.5);
        led = 0;
        wait(0.5);
    }
}