Part Number: MSP-EXP430G2ET
Other Parts Discussed in Thread: ENERGIA, MSP430G2553
Hello,
I tested example codes for Educational BoosterPack MKII with MSP-EXP430G2ET launchpad but none of them worked out.
Are they incompatible or I have wrong setting?
The board setting is MSP-EXP430G2ET w/ MSP430G2553 and codes are tested by Energia running on Windows 10.
For eaxmple, I uploaded code successful as follow but get no reaction on the Educational BoosterPack MKII.
int blue_led = 37;
void setup() {
pinMode(blue_led, OUTPUT);}
}
void loop() {
digitalWrite(blue_led, HIGH);
}
I'm pretty much newbie for micro controller so your help is very appreciated.
