[問題] 請問一下這份程式碼

看板ASM (組合語言)作者 (溫柔殺手)時間6年前 (2018/05/24 20:51), 編輯推噓0(002)
留言2則, 2人參與, 6年前最新討論串1/1
各位版上的大大晚上好 我正在研讀Arduino的入門範例LED閃爍。 void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second } 請問他怎麼知道我的LED_UBUILTIN是第13隻腳? 我編譯後還真的可以用。 我們一般都會指定變數像是#define LED_BUILTIN 13 但這份程式碼沒有,而且可以正常的Work說。太神奇了。 -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.195.98.141 ※ 文章網址: https://www.ptt.cc/bbs/ASM/M.1527166306.A.5E4.html

05/25 14:44, 6年前 , 1F
arduino constant
05/25 14:44, 1F

05/26 07:56, 6年前 , 2F
05/26 07:56, 2F
文章代碼(AID): #1R1hLYNa (ASM)
文章代碼(AID): #1R1hLYNa (ASM)