Permite ajustar la velocidad del motor DC a sus necesidades.

Permite ajustar la velocidad del motor DC a sus necesidades.

//Códigopara el Arduino
int motoDC=5;
void setup(){

Serial.begin(9600);
}
void loop(){
float niv=analogRead(A1)/4;
analogWrite(motoDC, niv);
Serial.println (niv);

delay(1000);
}