Created
April 2, 2019 14:17
-
-
Save vixtory09678/b6be33ebddb8013b8daf2e5a7bf0db6a 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
// 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