All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xingshuangs.iot.protocol.modbus.model.MbReadCoilRequest Maven / Gradle / Ivy

package com.github.xingshuangs.iot.protocol.modbus.model;


import com.github.xingshuangs.iot.protocol.modbus.enums.EMbFunctionCode;
import com.github.xingshuangs.iot.protocol.common.buff.ByteReadBuff;
import com.github.xingshuangs.iot.protocol.common.buff.ByteWriteBuff;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * 请求读取线圈
 *
 * @author xingshuang
 */
@EqualsAndHashCode(callSuper = true)
@Data
public final class MbReadCoilRequest extends MbPdu {

    /**
     * 地址 说是从0x0000 至 0xFFFF,但对应实际却只是0001-9999,对应0x0000-0x270F 
* 字节大小:2个字节 */ private int address; /** * 数量,该功能码读取线圈的 1 至 2000 连续状态,1 至 2000(0x7D0) * 字节大小:2个字节 */ private int quantity; public MbReadCoilRequest() { this.functionCode = EMbFunctionCode.READ_COIL; } public MbReadCoilRequest(int address, int quantity) { this.functionCode = EMbFunctionCode.READ_COIL; this.address = address; this.quantity = quantity; } @Override public int byteArrayLength() { return super.byteArrayLength() + 4; } @Override public byte[] toByteArray() { return ByteWriteBuff.newInstance(this.byteArrayLength()) .putByte(this.functionCode.getCode()) .putShort(this.address) .putShort(this.quantity) .getData(); } /** * 解析字节数组数据 * * @param data 字节数组数据 * @return MbReadCoilRequest */ public static MbReadCoilRequest fromBytes(final byte[] data) { return fromBytes(data, 0); } /** * 解析字节数组数据 * * @param data 字节数组数据 * @param offset 偏移量 * @return MbReadCoilRequest */ public static MbReadCoilRequest fromBytes(final byte[] data, final int offset) { ByteReadBuff buff = new ByteReadBuff(data, offset); MbReadCoilRequest request = new MbReadCoilRequest(); request.functionCode = EMbFunctionCode.from(buff.getByte()); request.address = buff.getUInt16(); request.quantity = buff.getUInt16(); return request; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy