for (int i = 0; i <= 255; i++){
analogWrite (motorPin, i);
for (int k = 0; k < strip.numPixels(); k ++){
strip.setPixelColor (k, i, i/2, i);
}
strip.show();
delay(10);
}
Click to Expand
Content Rating
Is this a good/useful/informative piece of content to include in the project? Have your say!
Content Rating
Is this a good/useful/informative piece of content to include in the project? Have your say!
You must login before you can post a comment. .