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:
- kgilbert
- Date:
- 2019-03-16
- Revision:
- 0:5ee0fb58a1c8
- Child:
- 1:d78c639f6b65
File content as of revision 0:5ee0fb58a1c8:
/* mbed Microcontroller Library
* Copyright (c) 2019 ARM Limited
* SPDX-License-Identifier: Apache-2.0
*/
#include "mbed.h"
#define WAIT_TIME 500 //msec
DigitalOut led1(LED1);
int main()
{
led1 = !led1;
wait_ms( WAIT_TIME );
}