Skip to content

Instantly share code, notes, and snippets.

@fxprime
Created June 4, 2025 07:09
Show Gist options
  • Save fxprime/6946c5063354d3f7c09e55a18d2be56d to your computer and use it in GitHub Desktop.
Save fxprime/6946c5063354d3f7c09e55a18d2be56d to your computer and use it in GitHub Desktop.
// ปัญหา: ปุ่มกดไม่ไว
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