PRUEBAS CON MOTOR DC
int motor = 9; void setup() { pinMode(motor, OUTPUT);// put your setup code here, to run once: } void loop() { digitalWrite(motor, HIGH); delay(1000); digitalWrite(motor, LOW); delay(1000);// put your main code here, to run repeatedly: }
Comentarios
Publicar un comentario