My outputs control mosfets, where some drice 15a load. I would like to use soft start so devices dont get full voltage immediatly. So i would like to use pwm to drive them up to full voltage
Is there any difference when using:
digitalWrite(3, HIGH); vs analogWrite(3, 256); ?
Would this make the output blink one time per second? Using teensy 4.0
analogWriteFrequency(3, 1);
PinMode(3, OUTPUT);...