Have the LED light up when the button is pressed down and turn off when not.
int LED = 2;
int Button = 7;
bool on = false;
int previous = 0;
void setup()
{
pinMode (LED, OUTPUT);
pinMode (Button, INPUT);
digitalWrite(LED,LOW);
}
void loop()
{
if (digitalRead(Button) == HIGH)
{
digitalWrite(LED, HIGH);
}
else
{
digitalWrite(LED, LOW);
}
}