Current section

Files

Jump to
hap lib hap characteristics on.ex
Raw

lib/hap/characteristics/on.ex

defmodule HAP.Characteristics.On do
@moduledoc """
Definition of the `public.hap.characteristic.on` characteristic
"""
@behaviour HAP.CharacteristicDefinition
def type, do: "25"
def perms, do: ["pr", "pw", "ev"]
def format, do: "bool"
end