Adafruit Arduino - Lesson 8. Analog Inputs */ int potPin = 0; void setup() { Serial.begin(9600); } void loop() { int reading = analogRead(potPin); ...
確定! 回上一頁