Hello,
I need to control both frequency and duty cycle for multiple PWM channels.
Rignt now im using this code to control the duty cycle
pinMode(PWM_A, OUTPUT);
analogWrite(PWM_A,duty);
How can i control the frequency of the PWM as well as the duty cycle?
Thanks