Current section

Files

Jump to
hap lib hap characteristics cooling_threshold_temperature.ex
Raw

lib/hap/characteristics/cooling_threshold_temperature.ex

defmodule HAP.Characteristics.CoolingThresholdTemperature do
@moduledoc """
Definition of the `public.hap.characteristic.temperature.cooling-threshold` characteristic
"""
@behaviour HAP.CharacteristicDefinition
def type, do: "0D"
def perms, do: ["pr", "pw", "ev"]
def format, do: "float"
def min_value, do: 10.0
def max_value, do: 35.0
def step_value, do: 0.1
def units, do: "celsius"
end