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

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

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

/**
 * create time: 2021/9/11
 *  二进制位状态 0表示关 1表示开
 * @author iteaj
 * @since 1.0
 */
public enum ModbusBitStatus {

    ON((byte) 0x01),
    OFF((byte) 0x00)
    ;

    private byte bit;

    ModbusBitStatus(byte bit) {
        this.bit = bit;
    }

    public byte getBit() {
        return bit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy