I am brand new to Arduino and trying to fumble my way through a last minute Halloween automation. What I am trying to do is have a pressure pad that I made fire a solenoid to blast air. I have tried several different examples and the best I can find to use is the Change State Detection. I changed the program a little so after the pressure pad is stepped on, pin 8 will turn on a relay for 200ms then turn off.
My only issue with the program is that it fires the relay any time a change in state is detected. How would I change the program to only activate the relayPin when the buttonPin goes high rather than any state change?
As a side note, I have checked out Blink Without Delay and I'm just not sure what I would need to change there to make it wait for the input before setting the output.
I also googled but couldn't seem to find what I am looking for, unless I am searching for the wrong thing.
Here is what I currently have.
// this constant won't change:
const int buttonPin = 2; // the pin that the pushbutton is attached to
const int relayPin = 8; // the pin that the Relay 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(relayPin, OUTPUT);
// set relay off
digitalWrite(relayPin, HIGH);
// 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 == LOW)
{
// 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(200);
}
// 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 % 1 == 0) {
digitalWrite(relayPin, HIGH);
delay(200);
digitalWrite(relayPin, LOW);
} else {
digitalWrite(relayPin, LOW);
}
}