Hi All!
Thanks for the awesone forum!
Via an other topic I discovered the L298 as a solution for my DC motor project.
I followed this article the get it running: https://hardwarefun.com/tutorials/controlling-speed-of-dc-motors-using-arduino
But now, when I use
analogWrite(motor2Ena, 255);
to enable the engine to run, it runs very slow (stalls often). While doing a digital write on the same pin lets the motor run very fast...
digitalWrite(motor2Ena, HIGH);
As I understood, analog 255 should be continuous on, so theoretically as fast as digital HIGH.