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 Serial.readBytesUntil()用法及代码示例
- Processing Serial.readChar()用法及代码示例
- Processing Serial.read()用法及代码示例
- Processing Serial.readStringUntil()用法及代码示例
- Processing Serial.readString()用法及代码示例
- Processing Serial.available()用法及代码示例
- Processing Serial.lastChar()用法及代码示例
- Processing Serial.list()用法及代码示例
- Processing Serial.clear()用法及代码示例
- Processing Serial.buffer()用法及代码示例
- Processing Serial.bufferUntil()用法及代码示例
- Processing Serial.stop()用法及代码示例
- Processing Serial.last()用法及代码示例
- Processing Serial.write()用法及代码示例
- Processing Serial.serialEvent()用法及代码示例
- Processing Serial用法及代码示例
- Processing Server.disconnect()用法及代码示例
- Processing Server.write()用法及代码示例
- Processing Server.active()用法及代码示例
- Processing Server.stop()用法及代码示例
- Processing Server.available()用法及代码示例
- Processing Server用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 Serial.readBytes()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。