Package net.wimpi.modbusme.util

Examples of net.wimpi.modbusme.util.BitVector


   */
  public WriteMultipleCoilsRequest(int ref, int count) {
    super();
    setFunctionCode(Modbus.WRITE_MULTIPLE_COILS);
    setReference(ref);
    m_Coils = new BitVector(count);
    setDataLength(m_Coils.byteSize() + 5);
  }//constructor
View Full Code Here

TOP

Related Classes of net.wimpi.modbusme.util.BitVector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.