Arduino-可變電阻接法
http://farm4.static.flickr.com/3262/2575465336_80cc27a489_b.jpg好不容易接好的,趕快做個紀錄!
以下為程式碼:
int potPin = 0; // 宣告類比腳位輸入的PIN腳
int val = 0; // 宣告變數Val = 0
int ledPin = 9;
void setup() {
Serial.begin(9600); //設定SerialPort的速度9600 = 9600bit/s
}
void loop() {
val = analogRead(potPin); // 用analogRead()這個函式讀取特定腳位的數值到變數val
Serial.println(val); //印出數值在Serial.Monitor
delay(10); //延遲讀入的時間為10ms
analogWrite(ledPin, val/4);
}
【↓】
沒有留言:
張貼留言