Created
June 4, 2025 07:09
-
-
Save fxprime/6946c5063354d3f7c09e55a18d2be56d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ปัญหา: ปุ่มกดไม่ไว | |
void loop() { | |
delay(5000); // หยุด 5 วินาที | |
if (digitalRead(buttonPin) == HIGH) { | |
// ปุ่มอาจถูกกดและปล่อยไปแล้วระหว่าง delay() | |
Serial.println("Button pressed"); // อาจไม่ทำงาน | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment