提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author 251823 |
|
7 |
* @description 动环设备 |
|
8 |
* @date 2023/05/11 14:09:04 |
|
9 |
*/ |
|
10 |
public class NET_LAMP_EXTERNAL_DEVICE_ENVIRONMENT_INFO extends NetSDKLib.SdkStructure { |
|
11 |
/** |
|
12 |
* 动环设备ID |
|
13 |
*/ |
|
14 |
public byte[] szId = new byte[32]; |
|
15 |
/** |
|
16 |
* 湿度 |
|
17 |
*/ |
|
18 |
public byte[] szHumidity = new byte[32]; |
|
19 |
/** |
|
20 |
* 气压 |
|
21 |
*/ |
|
22 |
public byte[] szPressure = new byte[32]; |
|
23 |
/** |
|
24 |
* 风速 |
|
25 |
*/ |
|
26 |
public byte[] szWindSpeed = new byte[32]; |
|
27 |
/** |
|
28 |
* 风向 |
|
29 |
*/ |
|
30 |
public byte[] szWindDirection = new byte[32]; |
|
31 |
/** |
|
32 |
* 温度 |
|
33 |
*/ |
|
34 |
public byte[] szTemperature = new byte[32]; |
|
35 |
/** |
|
36 |
* 分贝 |
|
37 |
*/ |
|
38 |
public byte[] szDecibel = new byte[32]; |
|
39 |
/** |
|
40 |
* PM2.5 |
|
41 |
*/ |
|
42 |
public byte[] szPM2_5 = new byte[32]; |
|
43 |
/** |
|
44 |
* PM10 |
|
45 |
*/ |
|
46 |
public byte[] szPM10 = new byte[32]; |
|
47 |
/** |
|
48 |
* 雨量 |
|
49 |
*/ |
|
50 |
public byte[] szRainfall = new byte[32]; |
|
51 |
/** |
|
52 |
* 辐射 |
|
53 |
*/ |
|
54 |
public byte[] szRadiation = new byte[32]; |
|
55 |
/** |
|
56 |
* 保留字节 |
|
57 |
*/ |
|
58 |
public byte[] szReserved = new byte[256]; |
|
59 |
|
|
60 |
public NET_LAMP_EXTERNAL_DEVICE_ENVIRONMENT_INFO() { |
|
61 |
} |
|
62 |
} |