Robofun 機器人論壇
標題:
想問一個arduino很基礎的問題
[打印本頁]
作者:
tank2552tank
時間:
2013-8-7 16:42
標題:
想問一個arduino很基礎的問題
本帖最後由 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
歡迎光臨 Robofun 機器人論壇 (https://robofun.net/forum/)
Powered by Discuz! X3.2