本站改版新增arduino频道
arduino 输入中断延时
/********* Rui Santos Complete project details at https://randomnerdtutorials.com *********/ #define timeSeconds 1 // Set GPIOs for LED and PIR Motion Sensor const int led = 48; const int motionSensor = 4; // Timer: Auxiliary variables unsigned long now = millis(); unsigned long lastTrigger = 0; boolean startTimer = false; boolean motion = false; // Checks if motion was detected, sets LED HIGH and starts a timer void IRAM_ATTR detectsMovement() { digitalWrite(led, HIGH); startTimer = true; lastTrigger = millis(); } void setup() { // Serial port for debugging purposes Serial.begin(115200); // PIR Motion Sensor mode INPUT_PULLUP pinMode(motionSensor, INPUT_PULLUP); // Set motionSensor pin as interrupt, assign interrupt function and set RISING mode attachInterrupt(digitalPinToInterrupt(motionSensor), detectsMovement, RISING); // Set LED to LOW pinMode(led, OUTPUT); digitalWrite(led, LOW); } void loop() { // Current time now = millis(); if((digitalRead(led) == HIGH) && (motion == false)) { Serial.println("按键!!!"); motion = true; } // Turn off the LED after the number of seconds defined in the timeSeconds variable if(startTimer && (now - lastTrigger > (timeSeconds*1000))) { Serial.println("延时结束..."); digitalWrite(led, LOW); startTimer = false; motion = false; } }
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.014280796051025 seconds