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.
11 years, 4 months ago.
How driving LED on an other board ?
Hello, sorry for my question. I have two boards - mbed LPC1768 and one noname board with LPC1768. I have a trouble with second board. I cannot driving LED on p3_25. Could you help me ?
#include "mbed.h"
#define DK_LED1 p3_25
DigitalOut LED(DK_LED1);
int main () {
while (1) {
LED = 1;
wait(0.5);
LED = 0;
wait(0.5);
}
}