// https://www.youtube.com/watch?v=QXlNZXMwl30
// Anas Kuzechie - Creating Arduino Library for WS2812 - Code 2
//--------------------------------------------
// Assembly via Arduino - Programming WS2812B
//--------------------------------------------
extern "C" {
void WS2812B();
}
void setup() {
WS2812B();
}
void loop(){}