Arduino has pwm libraries. For example the command:
analogWrite(pin, 124);
Would set the pwm value on "pin" to approx 50%. 0 being off and 255 being 100%. Arduino pwm defaults to 500hz which is usless for motor control but can be set to any frequency. I have some code to effect this on my laptop so let me know and i'll post it up.
analogWrite(pin, 124);
Would set the pwm value on "pin" to approx 50%. 0 being off and 255 being 100%. Arduino pwm defaults to 500hz which is usless for motor control but can be set to any frequency. I have some code to effect this on my laptop so let me know and i'll post it up.