farmbot_os/farmbot_core/lib/leds/led_handler.ex

17 lines
439 B
Elixir
Raw Normal View History

2018-07-10 15:03:11 -06:00
defmodule Farmbot.Leds.Handler do
@moduledoc """
Led behaviour.
"""
@type status :: :off | :solid | :slow_blink | :fast_blink
@callback red(status) :: any
@callback blue(status) :: any
@callback green(status) :: any
@callback yellow(status) :: any
@callback white1(status) :: any
@callback white2(status) :: any
2018-07-10 15:48:16 -06:00
@callback white3(status) :: any
@callback white4(status) :: any
@callback white5(status) :: any
2018-07-10 15:03:11 -06:00
end