The Arduino Reference text is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
Find anything that can be improved? Suggest corrections and new documentation via GitHub.
Doubts on how to use Github? Learn everything you need to know in this tutorial.
Initialize the pins to control the devices attached.
leds.begin()
#include <Arduino_APA102.h> Arduino_APA102 leds(5, 5, 4); void setup() { leds.begin(); } void loop() {}