ポテンショメータで時間間隔を設定したい。1秒から6秒まで選択したいです。これどうやってするの?
私はこれまでのところこれを持っています。ポテンショメータを使用すると、ライトが明から暗に変わります。
(私は Arduino Uno を使用しており、C++ でプログラミングしています)。
const byte pot = 0;
int potWert=0;
potWert = analogRead(pot);
analogWrite(led,potWert/4);
Serial.println((byte)potWert); //just for output on the serial monitor