Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
12 years, 9 months ago.
Canned Routine to Stop "Hello World"
A suggestion for this page, which encourages new users to try "Hello World": Before trying to create my own program (which isn't working yet, since right-clicking on "My Programs" isn't doing anything), another download should be added to this page entitled "Stop the Blinking" or similar! I'd like the distracting flashing to stop until I can figure out how to modify the code that's on my LPC1768.
Question relating to:
2 Answers
12 years, 9 months ago.
Try downloading this to stop the blinking...
- mbed NXP LPC1768: GoodbyeWorld_LPC1768.bin
Import programGoodbyeWorld
Stop the Blinking LED
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
myled = 1;
wait(0.5);
myled = 0;
while(1) {
wait(1.0);
}
}
11 years, 11 months ago.
Why not delete the Hello_World.bin from the mbed and press the button again?

Great! Thanks for the help!
posted by Larry Buchholz 07 Feb 2013