Skip to content
Permalink
54271220f2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (14 sloc) 320 Bytes
#include <mbed.h>
int main() {
// put your setup code here, to run once:
//Setup the LED1 pin to be a digital output called ledOne
DigitalOut ledOne(LED1);
while(1) {
// put your main code here, to run repeatedly:
printf("Loop\n");
ledOne = 1;
wait(1.0);
ledOne = 0;
wait(1.0);
}
}