FastLED 3.9.3
|
A void returning callback that can be used to call a function with a variable number of arguments.
A void returning callback that can be used to call a function with a variable number of arguments. If this binds to a non-static member function then self must be none null. If it's a free function then set self to nullptr.
...Args | The types of the arguments to the function. <const char*> callback(this, [](void* self, const char* str) { static_cast<MyClass*>(self)->myFunction(str); }); |