void setup() { pinMode(13, OUTPUT); // 設定成輸出腳位 pinMode(12, INPUT); // 設定成輸入腳位 } void loop() { bool PB1 = digitalRead(12); ...
確定! 回上一頁