Skip to content

Commit

Permalink
Add documentation for a number of methods
Browse files Browse the repository at this point in the history
Signed-off-by: Evy Bongers <[email protected]>
  • Loading branch information
EvyBongers committed Mar 12, 2024
1 parent 1714765 commit 7942fad
Showing 1 changed file with 67 additions and 3 deletions.
70 changes: 67 additions & 3 deletions plugins/Kaleidoscope-LEDControl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,87 @@ effects. It is also a building block for plugins that control LEDs.

### `.next_mode(void)`

> Activates the next LED mode. cycles to the first LED mode if the current LED
> Activates the next LED mode. Cycles to the first LED mode if the current LED
> mode is the last one.
### `.prev_mode(void)`

> Activates the previous LED mode. cycles to the last LED mode if the current
> Activates the previous LED mode. Cycles to the last LED mode if the current
> LED mode is the first one.
### `.get_mode()`


### `.set_mode(uint8_t mode_id)`

> Activates a LED mode by its index in the firmware. If the index exceeds the
> numer of led modes, the method returns early.
### `.get_mode_index()`
### `.get_mode()`

> Returns the index of the currently active LED mode.
### `.refreshAll()`

> If the hardware has LEDs and LEDs are enabled, turn all LEDs off and then
> trigger the current LED mode to refresh.
### `.setCrgbAt(uint8_t led_index, cRGB crgb)`

> Sets the specified LED to the provided color.
### `.setCrgbAt(KeyAddr key_addr, cRGB color)`

> Sets the LED for the specified key to the provided color.
### `.getCrgbAt(uint8_t led_index)`

> Get the LED color of the specified LED.
### `.getCrgbAt(KeyAddr key_addr)`

> Get the LED color of the LED for the specified key.
### `.syncLeds(void)`


### `.set_all_leds_to(uint8_t r, uint8_t g, uint8_t b)`

> Set all LEDs using the provided rgb values.
### `.set_all_leds_to(cRGB color)`

> Set all LEDs to the specified color.
### `.setSyncInterval(uint8_t interval)`

> Set the interval at which the LEDs should sync, in milliseconds.
>
> Note: LED updates are considered on each cycle of the runtime. Because of
> that, the interval effectively means that _at least_ `interval` milliseconds
> has passed before LEDs are synced.
### `.setBrightness(uint8_t brightness)`

> Set the brightness for all LEDs.
### `.getBrightness()`

> Returns the current brightness of the LEDs as a uint8_t.
### `.onSetup()`

> See [[event-handler-hooks]]
### `.setup(void)`
### `.onKeyEvent(KeyEvent &event)`

> See [[event-handler-hooks]]
### `.afterEachCycle()`

> See [[event-handler-hooks]]
### `.update(void)`

> Triggers the currently active LED mode to update. It is up to the LED mode to
Expand All @@ -49,6 +103,16 @@ effects. It is also a building block for plugins that control LEDs.
> address.
### `.activate(LEDModeInterface *plugin)`


### `.disable()`

> Turn off all LEDs and disables updating LEDs
### `.enable()`

> Enables updating LEDs and calls `refreshAll()`
### `.isEnabled()`

> Returns a bool value reflecting whether LEDs are currently enabled.

0 comments on commit 7942fad

Please sign in to comment.