当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing Serial.readBytes()用法及代码示例


Processing, 类Serial中的readBytes()用法介绍。

用法

  • serial.readBytes()
  • serial.readBytes(max)
  • serial.readBytes(dest)

参数

  • serial (Serial) Serial 类型的任何变量
  • max (int) 要读取的最大字节数

返回

  • byte[] or int

说明

从缓冲区或null(如果没有可用的)读取一组字节。不带参数的版本返回缓冲区中所有数据的字节数组。这效率不高,但易于使用。带有byteBuffer 参数的版本更节省内存和时间。它抓取缓冲区中的数据并将其放入传入的字节数组中,并为读取的字节数返回一个int 值。如果可用字节数超过 byteBuffer 的容量,则仅读取适合的字节数。

例子

// Example by Tom Igoe

import processing.serial.*;

Serial myPort;  // The serial port

void setup() {
  // List all the available serial ports
  printArray(Serial.list());
  // Open the port you are using at the rate you want:
  myPort = new Serial(this, Serial.list()[0], 9600);
}

void draw() {
  // Expand array size to the number of bytes you expect
  byte[] inBuffer = new byte[7];
  while (myPort.available() > 0) {
    inBuffer = myPort.readBytes();
    myPort.readBytes(inBuffer);
    if (inBuffer != null) {
      String myString = new String(inBuffer);
      println(myString);
    }
  }
}

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 Serial.readBytes()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。