提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 421657 |
|
8 |
* @description 灯光闪烁相关信息 |
|
9 |
* @origin autoTool |
|
10 |
* @date 2023/10/19 17:27:53 |
|
11 |
*/ |
|
12 |
public class NET_FILCKER_LIGHTING extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* /是否支持灯光闪烁 |
|
15 |
*/ |
|
16 |
public int bSupported; |
|
17 |
/** |
|
18 |
* /支持灯光联动能力集 |
|
19 |
*/ |
|
20 |
public NET_LINKING_ABILITY stuAbility = new NET_LINKING_ABILITY(); |
|
21 |
/** |
|
22 |
* /闪烁灯光类型 |
|
23 |
*/ |
|
24 |
public int[] anLightType = new int[3]; |
|
25 |
/** |
|
26 |
* /闪烁灯光数量 |
|
27 |
*/ |
|
28 |
public int nLightTypeLen; |
|
29 |
/** |
|
30 |
* /闪烁间隔时间范围 |
|
31 |
*/ |
|
32 |
public int[] anFilckerIntevalTime = new int[2]; |
|
33 |
/** |
|
34 |
* /闪烁可配置次数 |
|
35 |
*/ |
|
36 |
public int[] anFilckerTimes = new int[2]; |
|
37 |
/** |
|
38 |
* /保留字节 |
|
39 |
*/ |
|
40 |
public byte[] byReserved = new byte[128]; |
|
41 |
|
|
42 |
public NET_FILCKER_LIGHTING() { |
|
43 |
} |
|
44 |
} |