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:
- noutram
- Date:
- 2017-07-11
- Revision:
- 2:75cff722e9d3
- Parent:
- 1:a3b418536134
File content as of revision 2:75cff722e9d3:
//This is known as a “header file”
//In short, this copies and pastes the text file
//mbed.h into this code
#include "mbed.h"
//Create a DigitalOut “object” called myled
//Pass constant D7 as a “parameter”
DigitalOut myled(D7);
//The main function - all executable C / C++
//applications have a main function. This is
//out entry point in the software
int main() {
// ALL the code is contained in a
// “while loop”
while(1)
{
//The code between the { curly braces }
//is the code that is repeated
myled = 1; // External LED is ON
wait(1.0); // 1 second
myled = 0; // LED is OFF
wait(1.0); // External 1 second
}
}
//updated for mbed os 5.4