cn.foxtech.device.protocol.v1.haiwu.air.v200.SetTurnOff Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fox-edge-server-protocol-haiwu-air-v200 Show documentation
Show all versions of fox-edge-server-protocol-haiwu-air-v200 Show documentation
fox-edge-server-protocol-haiwu-air-v200
The newest version!
/* ----------------------------------------------------------------------------
* Copyright (c) Guangzhou Fox-Tech Co., Ltd. 2020-2024. All rights reserved.
* --------------------------------------------------------------------------- */
package cn.foxtech.device.protocol.v1.haiwu.air.v200;
import cn.foxtech.device.protocol.v1.core.annotation.FoxEdgeDeviceType;
import cn.foxtech.device.protocol.v1.core.annotation.FoxEdgeOperate;
import cn.foxtech.device.protocol.v1.core.exception.ProtocolException;
import cn.foxtech.device.protocol.v1.haiwu.air.v200.enums.Type;
import cn.foxtech.device.protocol.v1.telecom.core.entity.PduEntity;
import cn.foxtech.device.protocol.v1.utils.HexUtils;
import cn.foxtech.device.protocol.v1.utils.MethodUtils;
import java.util.HashMap;
import java.util.Map;
@FoxEdgeDeviceType(value = "基站空调(V2.00)", manufacturer = "广东海悟科技有限公司")
public class SetTurnOff {
@FoxEdgeOperate(name = "遥控关机", polling = true, type = FoxEdgeOperate.encoder, timeout = 2000)
public static String encodePdu(Map param) {
// 取出设备地址
Integer devAddr = (Integer) param.get("devAddr");
// 检查输入参数
if (MethodUtils.hasEmpty(devAddr)) {
throw new ProtocolException("输入参数不能为空:devAddr");
}
PduEntity pduEntity = new PduEntity();
pduEntity.setAddr(devAddr);
pduEntity.setVer(0x10);
pduEntity.setCid1(0x60);
pduEntity.setCid2(0x45);
pduEntity.setData(new byte[1]);
byte[] data = pduEntity.getData();
data[0] = 0x1F;
byte[] pdu = PduEntity.encodePdu(pduEntity);
return HexUtils.byteArrayToHexString(pdu);
}
@FoxEdgeOperate(name = "遥控关机", polling = true, type = FoxEdgeOperate.decoder, timeout = 2000)
public static Map decodePdu(String hexString, Map param) {
byte[] pdu = HexUtils.hexStringToByteArray(hexString);
PduEntity entity = PduEntity.decodePdu(pdu);
if (entity.getCid1() != 0x60) {
throw new ProtocolException("返回的CID1不正确!");
}
Map result = new HashMap<>();
result.put("return", entity.getCid2());
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy