Arduinoは初めてです。たぶん基本的な質問です...
このプログラムをロードすると:
int mval = 0;
void setup() {
Serial.begin(9600);
// set up the LCD's number of columns and rows:
}
void loop() {
mval = analogRead(1);
Serial.println(mval);
delay(1000);
}
300と400の間で変化する値を取得します。0にする必要があると思うときは、その入力に何も接続されていないということです。
何か案は??USB経由でラップトップに接続されているarduino UNOです。
関連:raspberrypi.stackexchange.com/q/14680
—
Hello World