DC Motor speed 1.0
License: Free File size: N/A
Users Rating: 0.0/5 - 0 votes
Please wait ... Your download link is being verified for malicious content.
You'll be able to download in 5 seconds.
You'll be able to download in 5 seconds.
ABOUT DC Motor speed
motor sürücü IN1 pinini arduino üzerindeki GND soketine ------------------------------------------------------------------------------ motor sürücü ENA pinini arduino üzerindeki PWM 3 soketine ---------------------------------------------------------- int dc = 3; int value = -1; void setup() { Serial.begin(9600); pinMode(dc, OUTPUT); } void loop() { while (Serial.available()) { value = Serial.read(); { Serial.println(value); analogWrite(dc,value); value = -1; } }