1
wxr
2023-03-31 7e42cc13a14b7de31c9f5d5c61cdf24f3246335d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
 
namespace Shared
{
[System.Serializable]
    public class ButtonPanel :DryContact
    {
        public ButtonPanel ()
            : base()
        {
            this.Type = DeviceType.ButtonPanel;
        }
 
        ///// <summary>
        ///// The mode. 模式
        ///// 无效模式        0
        ///// 单一开        2
        ///// 单一关        3
        ///// 单一开关        1
        ///// 组合开        4
        ///// 组合关        5
        ///// 点动            6
        ///// 组合开关        7
        ///// 闹钟            13
        ///// 双击 单一开关 10
        ///// 双击 组合开关    11
        ///// 长按 短按        17
        ///// 短按 长点动    16
        ///// </summary>
        //public byte Mode;
 
        //public byte FunctionID;//gongnenghao 
        //public byte GoalSunbetID;//mubiao ziwanghao 
        //public byte GoalDeviceID;//mubiao shebeihao 
        //public byte ButtonKeyType;
        //public byte Parameter1;
        //public byte Parameter2;
        //public byte Parameter3;//yunxing shijian 
        //public byte Parameter4;//tiaoguang
 
    }
}