| | |
| | | using System.Collections.Generic; |
| | | using System.Threading.Tasks; |
| | | using Newtonsoft.Json.Linq; |
| | | using Shared.Common; |
| | | |
| | | namespace ZigBee.Device |
| | | { |
| | |
| | | public int panelBacklightLevel = -1; |
| | | |
| | | /// <summary> |
| | | /// 当前选择模式 |
| | | /// </summary> |
| | | public string currentKeySelectModeText = ""; |
| | | |
| | | /// <summary> |
| | | /// 当前开关模式 |
| | | /// </summary> |
| | | public string CurrentSwitchMode = ""; |
| | | /// <summary> |
| | | /// 当前属性模式 |
| | | /// </summary> |
| | | public int currentClusterID; |
| | | |
| | | /// <summary> |
| | | /// 当前调光模式 |
| | | /// </summary> |
| | | public string CurrentDimmerMode = ""; |
| | | |
| | | /// <summary> |
| | | /// 当前遮阳模式 |
| | | /// </summary> |
| | | public string CurrentCurtainMode = ""; |
| | | |
| | | /// <summary> |
| | | /// 当前房间ID |
| | | /// </summary> |
| | | public string RoomId = ""; |
| | | |
| | | /// <summary> |
| | | /// 当前房间ID |
| | | /// </summary> |
| | | public string curSelectSceneID = ""; |
| | | |
| | | // <summary> |
| | | /// 按键中被绑定的目标列表 |
| | | /// </summary> |
| | | public System.Collections.Generic.List<BindListResponseObj> bindList = new System.Collections.Generic.List<BindListResponseObj> { }; |
| | |
| | | /// 开关类型——取反. |
| | | /// </summary> |
| | | OnOff_OnOff = 102, |
| | | |
| | | /// <summary> |
| | | /// 亮度类型——调大. |
| | | /// 亮度类型——按等级调大. |
| | | /// </summary> |
| | | Level_Step_Up = 200, |
| | | /// <summary> |
| | | /// 亮度类型——调小. |
| | | /// 亮度类型——按等级调小. |
| | | /// </summary> |
| | | Level_Step_Down = 201, |
| | | /// <summary> |
| | | /// 亮度类型——取反. |
| | | /// 亮度类型——按等级取反. |
| | | /// </summary> |
| | | Level_Step_Up_Down = 202, |
| | | |
| | | /// <summary> |
| | | /// 亮度类型——取反. |
| | | /// </summary> |
| | | Level_Up = 203, |
| | | /// <summary> |
| | | /// 亮度类型——取反. |
| | | /// </summary> |
| | | Level_Down = 204, |
| | | /// <summary> |
| | | /// 亮度类型——取反. |
| | | /// </summary> |
| | | Level_Up_Down = 205, |
| | | /// <summary> |
| | | /// 窗帘类型——开. |
| | | /// </summary> |
| | |
| | | /// 窗帘类型——下降停止. |
| | | /// </summary> |
| | | Wcd_Down_Stop = 304, |
| | | /// <summary> |
| | | /// 窗帘类型——下降停止. |
| | | /// </summary> |
| | | Default = 65535, |
| | | } |
| | | #endregion |
| | | |