Current section

Files

Jump to
hap lib hap characteristics name.ex
Raw

lib/hap/characteristics/name.ex

defmodule HAP.Characteristics.Name do
@moduledoc """
Definition of the `public.hap.characteristic.name` characteristic
"""
@behaviour HAP.CharacteristicDefinition
def type, do: "23"
def perms, do: ["pr"]
def format, do: "string"
def max_length, do: 64
end