Electronic – arduino – msp430 using Button as switch

arduinoenergiamicrocontrollermsp430switches

I am trying to do this(http://www.arduino.cc/en/Tutorial/Switch) without using any external parts because I was able to use button example from same site with this code: http://en.textsave.org/VjL) with my msp430g2553 using Energia but its not working, any help?

const int buttonPin = PUSH2;     // the number of the pushbutton pin
const int ledPin =  GREEN_LED;   // the number of the LED pin

int state = HIGH;      // the current state of the output pin
int reading;           // the current reading from the input pin
int previous = LOW;    // the previous reading from the input pin

// the follow variables are long's because the time, measured in miliseconds,
// will quickly become a bigger number than can be stored in an int.
long time = 0;         // the last time the output pin was toggled
long debounce = 200;   // the debounce time, increase if the output flickers

void setup(){
pinMode(buttonPin, INPUT);
pinMode(ledPin, OUTPUT);}

void loop(){
reading = digitalRead(ledPin);

// if the input just went from LOW and HIGH and we've waited long enough
// to ignore any noise on the circuit, toggle the output pin and remember
// the time
if (reading == HIGH && previous == LOW && millis() - time > debounce) {
if (state == HIGH){
  state = LOW;
}
else
  state = HIGH;
  time = millis();    }

digitalWrite(ledPin, state);
previous = reading;}

Best Answer

Eh, most likely you are using a rev1.5 Launchpad. The external pullup pin for the p1.3 button is not populated. Since it is not populated, there is no steady state change. You must enable the internal pullup.

Instead of pinMode(buttonPin); use pinMode(buttonPin, INPUT_PULLUP);

Also, you are trying to read the wrong pin.

Instead of reading = digitalRead(ledPin); use reading = digitalRead(buttonPin);