Ceiling Fan

디바이스 프로파일

지원하는 기능은 모델과 국가에 따라 다를 수 있습니다.

Property

Resource Property

Name

Type

Name

Type

R/W

Value

Description

operation

(동작)

Object

ceilingfanOperationMode

(본체 동작)

Enum

RW

POWER_ON

실링 팬 가동 시작

RW

POWER_OFF

실링 팬 가동 중지

airFlow

(바람 설정)

Object

windStrength

(바람세기)

Enum

RW

LOW

약풍

RW

MID

중풍

RW

HIGH

강풍

RW

TURBO

터보

JSON

{
  "property": {
    "airFlow": {
      "windStrength": {
        "mode": ["r", "w"],
        "type": "enum",
        "value": {
          "r": [
            "TURBO",
            "HIGH",
            "LOW",
            "MID"],
          "w": [
            "TURBO",
            "HIGH",
            "LOW",
            "MID"]}}},
    "operation": {
      "ceilingfanOperationMode": {
        "mode": ["r", "w"],
        "type": "enum",
        "value": {
          "r": [
            "POWER_ON",
            "POWER_OFF"],
          "w": [
            "POWER_ON",
            "POWER_OFF"]}}}
  }
}

 

상태 조회 결과

Example

#CeilingFan
{
      "operation": {
        "ceilingfanOperationMode": "POWER_OFF"
      },
      "airFlow": {
        "windStrength": "HIGH"
      }
    }

 

제어 명령

Example

Ceiling fan power on

{
    "operation": {
        "ceilingfanOperationMode":  "POWER_ON"
    }
}

Ceiling fan wind strength adjustment 

{
    "airFlow": {
        "windStrength": "HIGH"
    }
}