14. PWM Programming

Question.3

What will the average voltage read on pin 9?

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

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

Select Answer