Saturday, March 21, 2020

State Change Detection (Edge Detection) for pushbuttons।

নীচের স্কেচটি ক্রমাগত push button অবস্থা read করে।
যদি বর্তমান button এর অবস্থা শেষ button এর অবস্থার থেকে পৃথক হয় এবং বর্তমান বোতামের অবস্থাটি HIGH হয় বা pushed condition এ থাকে, তবে button টি অফ থেকে চালু হয়ে যায়।
স্কেচটি তারপরে বোতাম পুশ কাউন্টারকে এক বাড়িয়ে দেয়।
স্কেচটি button push কাউন্টারটির মানও পরীক্ষা করে এবং যদি এটি চারএর গুণিতক হয়  তবে এটি পিন 13 অন করে LED সক্রিয় করে। অন্যথায়, এটি এটি বন্ধ করে দেয়।
N.B: Arduino তে programming code কে sketch বলা হয়ে থাকে।
Codes:
                                         // 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() {
    pinMode(buttonPin, INPUT); // initialize the button pin as a input:
    pinMode(ledPin, OUTPUT);// initialize the LED as an output:
    Serial.begin(9600);// initialize serial communication:
}
void loop() {
    buttonState = digitalRead(buttonPin);// read the pushbutton input pin:
  if (buttonState != lastButtonState) // compare the buttonState to its previous state
  {
      if (buttonState == HIGH) // if the state has changed, increment the counter
       {
      // 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
             {
            Serial.println("off"); // if the current state is LOW then the button went from on to 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);
  }

}

No comments:

Post a Comment