package com.iailab.netsdk.lib.structure; import com.iailab.netsdk.lib.NetSDKLib; /** * @author 251823 * @description 照明ç¯è®¾å¤‡ * @date 2023/05/11 14:09:04 */ public class NET_LAMP_EXTERNAL_DEVICE_LIGHT_INFO extends NetSDKLib.SdkStructure { /** * ç¯çš„åœ°å€ */ public byte[] szId = new byte[32]; /** * ç¯çš„分组 */ public byte[] szGroup = new byte[32]; /** * ç¯ç”µåŽ‹ */ public byte[] szVoltage = new byte[32]; /** * ç¯ç”µæµ */ public byte[] szCurrent = new byte[32]; /** * ç¯ç‰ˆæœ¬ä¿¡æ¯ */ public byte[] szVersion = new byte[32]; /** * ç¯å¼€å…³æŽ§åˆ¶ */ public int bOnOffState; /** * ç¯äº®åº¦æŽ§åˆ¶ */ public int nBrightness; /** * ä¿ç•™å—节 */ public byte[] szReserved = new byte[256]; public NET_LAMP_EXTERNAL_DEVICE_LIGHT_INFO() { } }