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

com.iteaj.iot.modbus.consts.ModbusCoilStatus Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.iteaj.iot.modbus.consts;

/**
 * 线圈状态
 */
public enum ModbusCoilStatus {
    ON(new byte[] {(byte) 0xFF, 0x00}), // 开
    OFF(new byte[] {0x00, 0x00}) // 关
    ;
    private byte[] code;

    ModbusCoilStatus(byte[] code) {
        this.code = code;
    }

    public byte[] getCode() {
        return code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy