diff --git a/README.md b/README.md index 69218c83..2c3743db 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,13 @@ Provides a breathing effect for the keyboard. Breathe in, breathe out. To use the plugin, include the header, and tell the firmware to use it: ```c++ +#include #include -void setup() { - Kaleidoscope.use(&LEDBreatheEffect); +KALEIDOSCOPE_INIT_PLUGINS(LEDControl, + LEDBreatheEffect); +void setup() { Kaleidoscope.setup(); } ```