Robofun 機器人論壇

 找回密碼
 申請會員
搜索
熱搜: 活動 交友 discuz
查看: 2200|回復: 0
打印 上一主題 下一主題

想問一個arduino很基礎的問題

[複製鏈接]
跳轉到指定樓層
1#
發表於 2013-8-7 16:42:52 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
本帖最後由 tank2552tank 於 2013-8-7 16:44 編輯

int potPin = 3; // select the input pin for the potentiometer
int ledPin = 9; // select the pin for the LED

void setup() {

  Serial.begin(9600);
}

void loop() {

  int sensorValue = analogRead(potPin);

  Serial.println(sensorValue, DEC);

  sensorValue = sensorValue/4; // convert from 0-1024 to 0-255

  analogWrite(ledPin, sensorValue);

  delay(150);

}

  

我想請問的是,第一行的程式碼是將pin 3設給potPin,但是實際接線卻是接到pin A3,但雖然如此程式還是可以正常執行.
我想知道為什麼不是將A3設給potPin而是將3設給potPin呢??



※原教學網址:http://coopermaa2nd.blogspot.tw/2010/12/arduino-lab4.html
您需要登錄後才可以回帖 登錄 | 申請會員

本版積分規則

小黑屋|手機版|Archiver|機器人論壇 from 2005.07

GMT+8, 2025-1-31 18:51 , Processed in 0.177404 second(s), 7 queries , Apc On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回復 返回頂部 返回列表