whyclj
2020-12-07 85ca7d73f45872d708c25b33eb44ded56f9922bd
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
package com.data.Comm;
 
public class Central_Data_ComBase {
    
    public static final int CMD_Null                     = 0; 
    
    public static final int CMD_SwitchClose_1st         = 0x10;                    
    public static final int CMD_SwitchClose_1st_ACK     = 0x11;
    public static final int CMD_SwitchOpen_1st             = 0x12;            
    public static final int CMD_SwitchOpen_1st_ACK         = 0x13;
    
    public static final int CMD_SwitchClose_2st         = 0x14;
    public static final int CMD_SwitchClose_2st_ACK     = 0x15;
    public static final int CMD_SwitchOpen_2st             = 0x16;
    public static final int CMD_SwitchOpen_2st_ACK         = 0x17;
    
    public static final int CMD_SwitchClose_3st         = 0x18;
    public static final int CMD_SwitchClose_3st_ACK     = 0x19;
    public static final int CMD_SwitchOpen_3st             = 0x20;
    public static final int CMD_SwitchOpen_3st_ACK         = 0x21;
    
    public static final int CMD_SwitchClose_4st         = 0x22;
    public static final int CMD_SwitchClose_4st_ACK     = 0x23;
    public static final int CMD_SwitchOpen_4st             = 0x24;
    public static final int CMD_SwitchOpen_4st_ACK         = 0x25;
    
    public static final int CMD_SwitchClose_5st         = 0x26;
    public static final int CMD_SwitchClose_5st_ACK     = 0x27;
    public static final int CMD_SwitchOpen_5st             = 0x28;
    public static final int CMD_SwitchOpen_5st_ACK         = 0x29;
    
    
}