赤外線センサーのでサーボモーターを制御させたいんですが、スケッチがコンパイルはできるんですが、書き込みができません何度か修正したんですが、一向に書き込みができません。どこがおかしいのか教えてください。
赤外線センサー;ELEGOOについているセンサー
サーボモーター;SANWA RS-991(販売終了)
#include <Servo.h>
int const potPin1 = A0;
int const potPin2 = A1;
int const potPin3 = A2;
int potVal;
int angle;
void setup() {
pinMode(9,OUTPUT);
Serial.begin(9600);
}
void loop() {
potVal = analogRead(A0);
potVal = analogRead(A1);
potVal = analogRead(A2);
// read the value of the potentiometer
// print out the value to the serial monitor
Serial.print("potVal: ");
Serial.print(potVal);
// scale the numbers from the pot
angle = map(potVal, 0, 100, 0, 100);
// print out the angle for the servo motor
Serial.print(", angle: ");
Serial.println(angle);
// set the servo position
analogWrite(100,INPUT);
// wait for the servo to get there
delay(5000);
}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。