Hello,
I'm a newbie and was trying example codes using MSP-EXP430G2ET.
Soon I noticed RED_LED and GREEN_LED work opposite against codes. Is this common or I have wrong setting?
For example, when I run Blink code as follow,
#define LED RED_LED
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
delay(1000);
}
the MSP430 blinks green led instead of red led.
I went over the user's guide of MSP 430 but couldn't find description about RED_LED