我想通过电位器设置时间间隔。我想从 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