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.
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
I have an older (mbed 005.1) that I'm just now trying to get running. My program is simple: turn on all the LED's but it just keeps blinking LED 1 The compiler detects the correct target (LPC1768) and compiles with a Success! message
#include "mbed.h" DigitalOut led1(LED1); DigitalOut led2(LED2); DigitalOut led3(LED3); DigitalOut led4(LED4); int main() { led1 = 1; led2 = 1; led3 = 1; led4 = 1; }So, how do I know if it's connected? How do I know if it's downloaded?