logo

Crowdly

Browser

Add to Chrome

int ledPin = 9; void setup() { } void loop() { for (int fadeValue = 0 ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

int ledPin = 9;

void setup() {

}

void loop() {

for (int fadeValue = 0 ; fadeValue <= 255; fadeValue += 5) {

   analogWrite(ledPin, fadeValue);

   delay(30);

  }

for (int fadeValue = 255 ; fadeValue >= 0; fadeValue -= 5) {

   analogWrite(ledPin, fadeValue);

   delay(30);

  }

}

1%
13%
2%
88%
More questions like this

Want instant access to all verified answers on learning.devinci.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome