Hi, Im working on a count down counter. can someone help me fix this code, I got it partially working, but I need it to work when the button is press and held. Thanks
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,6,5,4,3);
// this constant won't change:
const int buttonPin = 2; // the pin that the pushbutton is attached to
const int ledPin = 13; // the pin that the LED is attached to
// Variables will change:
int buttonPushCounter = 0; // counter for the number of button presses
int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
void setup() {
// initialize the button pin as a input:
pinMode(buttonPin, INPUT);
// initialize the LED as an output:
pinMode(ledPin, OUTPUT);
// initialize serial communication:
Serial.begin(9600);
}
void loop() {
// read the pushbutton input pin:
buttonState = digitalRead(buttonPin);
// compare the buttonState to its previous state
if (buttonState != lastButtonState) {
// if the state has changed, increment the counter
if (buttonState == HIGH) {
// if the current state is HIGH then the button went from off to on:
buttonPushCounter--;
Serial.println("on");
Serial.print("number of button pushes: ");
Serial.println(buttonPushCounter);
} else {
// if the current state is LOW then the button went from on to off:
Serial.println("off");
}
// Delay a little bit to avoid bouncing
// delay(50);
}
// save the current state as the last state, for next time through the loop
lastButtonState = buttonState;
// turns on the LED every four button pushes by checking the modulo of the
// button push counter. the modulo function gives you the remainder of the
// division of two numbers:
if (buttonPushCounter % 4 == 0) {
digitalWrite(ledPin, HIGH);
} else {
digitalWrite(ledPin, LOW);
}
if (buttonPushCounter ==-1){
lcd.setCursor(0,1);
lcd.print("29 LEFT");
}
if (buttonPushCounter ==-2){
lcd.setCursor(0,1);
lcd.print("28 LEFT");
}
if (buttonPushCounter ==-3){
lcd.setCursor(0,1);
lcd.print("27 LEFT");
}
if (buttonPushCounter ==-4){
lcd.setCursor(0,1);
lcd.print("26");
}
if (buttonPushCounter ==-5){
lcd.setCursor(0,1);
lcd.print("25");
}
if (buttonPushCounter ==-6){
lcd.setCursor(0,1);
lcd.print("24");
}
if (buttonPushCounter ==-7){
lcd.setCursor(0,1);
lcd.print("23");
}
if (buttonPushCounter ==-8){
lcd.setCursor(0,1);
lcd.print("22");
}
if (buttonPushCounter ==-9){
lcd.setCursor(0,1);
lcd.print("21");
}
if (buttonPushCounter ==-10){
lcd.setCursor(0,1);
lcd.print("20");
}
if (buttonPushCounter ==-11){
lcd.setCursor(0,1);
lcd.print("19");
}
if (buttonPushCounter ==-12){
lcd.setCursor(0,1);
lcd.print("18");
}
if (buttonPushCounter ==-13){
lcd.setCursor(0,1);
lcd.print("17");
}
if (buttonPushCounter ==-14){
lcd.setCursor(0,1);
lcd.print("16");
}
if (buttonPushCounter ==-15){
lcd.setCursor(0,1);
lcd.print("15");
}
if (buttonPushCounter ==-16){
lcd.setCursor(0,1);
lcd.print("14");
}
if (buttonPushCounter ==-17){
lcd.setCursor(0,1);
lcd.print("13");
}
if (buttonPushCounter ==-18){
lcd.setCursor(0,1);
lcd.print("12");
}
if (buttonPushCounter ==-19){
lcd.setCursor(0,1);
lcd.print("11");
}
if (buttonPushCounter ==-20){
lcd.setCursor(0,1);
lcd.print("10");
}
if (buttonPushCounter ==-21){
lcd.setCursor(0,1);
lcd.print("09");
}
if (buttonPushCounter ==-22){
lcd.setCursor(0,1);
lcd.print("08");
}
if (buttonPushCounter ==-23){
lcd.setCursor(0,1);
lcd.print("07");
}
if (buttonPushCounter ==-24){
lcd.setCursor(0,1);
lcd.print("06");
}
if (buttonPushCounter ==-25){
lcd.setCursor(0,1);
lcd.print("05");
}
if (buttonPushCounter ==-26){
lcd.setCursor(0,1);
lcd.print("04");
}
if (buttonPushCounter ==-27){
lcd.setCursor(0,1);
lcd.print("03");
}
if (buttonPushCounter ==-28){
lcd.setCursor(0,1);
lcd.print("02");
}
if (buttonPushCounter ==-29){
lcd.setCursor(0,1);
lcd.print("01");
}
if (buttonPushCounter ==-30){
lcd.setCursor(0,1);
lcd.print("RELOAD AMMO");
}
}