View Source Fledex.Color.Functions (fledex v0.3.0)

Summary

Functions

Link to this function

create_gradient_rgb(num_leds, start_color, end_color)

View Source
Link to this function

create_rainbow_circular_hsv(num_leds, initial_hue \\ 0, reversed \\ false)

View Source
@spec create_rainbow_circular_hsv(pos_integer(), byte(), boolean()) :: [
  Fledex.Color.Types.hsv()
]
Link to this function

create_rainbow_circular_rgb(num_leds, initial_hue \\ 0, reversed \\ false)

View Source
@spec create_rainbow_circular_rgb(pos_integer(), byte(), boolean()) :: [
  Fledex.Color.Types.rgb()
]
Link to this function

hsv2rgb(leds, conversion_function \\ &Conversion.Rainbow.hsv2rgb/2, color_correction \\ &Correction.color_correction_none/1)

View Source