Interfacing 2 12A Linear Actuators with Arduino

Hi everybody!

As the title states, I am looking to interface two 12V 12A Linear Actuators with an Arduino.

I am looking at motor drivers. At that curent rating, the cost is way too much so I was hoping to put multiple lower current motor drivers in parallel. Would this work?

I was thinking putting 6 L298N motor drivers, each with a (single bridge) max operating current of 2A, in parallel to run my two linear actuators.

I am a total noob at this stuff and would love to hear from someone with more experience. Will this work? I don't want to fry my drivers.

Are you planning to speed control them with PWM?

Or, just on or off? If so, I would just use a decent relay, then all you need is a transistor for the coil drive.
Some examples:
http://www.digikey.com/product-search/en?pv1410=4&FV=fff40010%2Cfff80367&k=relay&mnonly=0&newproducts=0&ColumnSort=0&page=1&stock=1&quantity=0&ptm=0&fid=0&pageSize=25
Maybe go a little higher, 15A, for some margin

Thanks for the reply!

I'm not sure why you're recommending a relay and transistor though?

Sorry for the dumb question.
Won't the Arduino be responsible for turning on and off the power to the motors?
Are you recommending using the relay to completely shut off power to the drivers (in an attempt to minimize the power dissipation and stress to the drivers)?

I plan on mostly using on/off but would like the ability to use PWM.

Thanks again

You need the linear actuator to go both directions? Then you need an H-bridge.
With 12A, you want really low Rds parts, as power dissipated in the MOSFET = I^2R
So 12
1210mOhm (milliohm) = 1.4W for example.
The cooler the MOSFET is, the smaller the heatsink needed.
Some examples:
N-channel
<4.5mOhm at Vgs = 4.5V, 12
12*.0045 = 648W

P-channel
7 mOhm, 1212.007 = 1.008W

Another option with relays and single N-channel MOSFET for speed control.

Thanks CrossRoads!

I appreciate your advice.