This seems the solution for me - just not sure of the arduino program part.Only problem here is that my 2 motors are each 1.6A noload and 25 A STALL. May need a bigger relay/components possibly?
This seems the solution for me - just not sure of the arduino program part.Only problem here is that my 2 motors are each 1.6A noload and 25 A STALL. May need a bigger relay/components possibly?
That is the way to go. I never thought about it. Really great suggestion.For a soft start, a loop can increment the analogWrite from 0 to 255, with a small delay between steps. This will avoid having large inrush currents when the motor starts.
"This seems the solution for me - just not sure of the arduino program part"On an Arduino, a digital output can be set by using "digitalWrite". Writing HIGH to a pin sets it to +5V. Writing a "LOW" sets it to 0. Some of the digital pins of an arduino support Pulse Width Modulation (PWM). By using "analogWrite" you can set the on-off ratio of a digital pin that has PWM capability. 0 is off and 255 is fully on. Any number in between will set the on/off ratio of pulses that the pin will output.
For a soft start, a loop can increment the analogWrite from 0 to 255, with a small delay between steps. This will avoid having large inrush currents when the motor starts.
There are some very good tutorials on-line that explain PWM, with example programs.