Je peux actuellement définir quatre broches PWM à environ 31 kHz avec le code suivant:
void setup()
{
TCCR1B = TCCR1B & B11111000 | B00000001; // Set PWM frequency for D9 & D10:
pinMode(pwmPin9, OUTPUT); // Sets the pin as output
pinMode(pwmPin10, OUTPUT); // Sets the pin as output
TCCR2B = TCCR2B & B11111000 | B00000001; // Set PWM for D3 & D11
pinMode(pwmPin3, OUTPUT); // Sets the pin as output
pinMode(pwmPin11, OUTPUT); // Sets the pin as output
}
J'ai trouvé cette configuration quelque part, mais je ne sais pas comment je peux régler ces quatre broches PWM à environ 25 kHz à la place. Comment est-ce possible?