Skip to content

Instantly share code, notes, and snippets.

@vixtory09678
Created April 2, 2019 14:17
Show Gist options
  • Save vixtory09678/b6be33ebddb8013b8daf2e5a7bf0db6a to your computer and use it in GitHub Desktop.
Save vixtory09678/b6be33ebddb8013b8daf2e5a7bf0db6a to your computer and use it in GitHub Desktop.
// digitalWrite(PIN , STATUS);
// การเรียกใช้คำสั่งให้ pin ที่ 13 มี Output เป็น High และเป็น Low โดยมีการหน่วงเวลาไว้ก่อน 1000mS
digitalWrite(13,HIGH);
delay(1000);
digitalWrite(13,LOW);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment