13. PWM Basics

Question.5

What is the duty cycle of PWM generated on pin 9?

void setup() {
  pinMode(9, OUTPUT);
}

void loop() {
  analogWrite(9, -6);
}
Need Help? Refer to the Quick Guide below

Select Answer