Packages
rockbox_ex
0.1.0
Idiomatic Elixir SDK for Rockbox — pipe-friendly, builder-friendly, with real-time event subscriptions and a plugin system.
Current section
Files
Jump to
Current section
Files
lib/rockbox/eq_band.ex
defmodule Rockbox.EqBand do
@moduledoc "A single equalizer band setting."
@type t :: %__MODULE__{
cutoff: integer(),
q: integer(),
gain: integer()
}
defstruct [:cutoff, :q, :gain]
end