com.zsmartsystems.zigbee.transport.ZigBeePort.write()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(118)

本文整理了Java中com.zsmartsystems.zigbee.transport.ZigBeePort.write()方法的一些代码示例,展示了ZigBeePort.write()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigBeePort.write()方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.transport.ZigBeePort
类名称:ZigBeePort
方法名:write

ZigBeePort.write介绍

[英]Write a data byte (integer) data to serial port. This should be non-blocking.
[中]将数据字节(整数)数据写入串行端口。这应该是非阻塞的。

代码示例

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

/**
 * Send raw bytes to output stream.
 *
 * @param packet the byte buffer
 * @throws IOException if IO exception occurs when writing or flushing bytes.
 */
@Override
public void sendRaw(int[] packet) throws IOException {
  synchronized (port) {
    for (int i = 0; i < packet.length; i++) {
      port.write(packet[i]);
    }
  }
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

serialPort.write(SLIP_END);
    case SLIP_END:
      serialPort.write(SLIP_ESC);
      serialPort.write(SLIP_ESC_END);
      break;
    case SLIP_ESC:
      serialPort.write(SLIP_ESC);
      serialPort.write(SLIP_ESC_ESC);
      break;
    default:
      serialPort.write(val);
      break;
serialPort.write(SLIP_END);

相关文章