Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- mbed_official
- Date:
- 2019-11-04
- Revision:
- 102:6979ad8bc0bc
- Parent:
- 100:ec006d6f3cb6
- Child:
- 104:f2805e857b14
File content as of revision 102:6979ad8bc0bc:
/* mbed Microcontroller Library
 * Copyright (c) 2019 ARM Limited
 * SPDX-License-Identifier: Apache-2.0
 */
#include "mbed.h"
#include "platform/mbed_thread.h"
// Blinking rate in milliseconds
#define BLINKING_RATE_MS                                                    500
int main()
{
    // Initialise the digital pin LED1 as an output
    DigitalOut led(LED1);
    while (true) {
        led = !led;
        thread_sleep_for(BLINKING_RATE_MS);
    }
}