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


Processing Serial用法及代码示例


Processing, 类Serial用法介绍。

构造函数

  • Serial(parent)
  • Serial(parent, baudRate)
  • Serial(parent, portName)
  • Serial(parent, portName, baudRate)
  • Serial(parent, portName, baudRate, parity, dataBits, stopBits)

参数

  • parent 通常使用"this"
  • baudRate 9600 是默认值
  • portName 端口名称(默认为 COM1)
  • parity 'N' 表示无,'E' 表示偶数,'O' 表示奇数,'M' 表示标记,'S' 表示空格('N' 是默认值)
  • dataBits 8 是默认值
  • stopBits 1.0、1.5 或 2.0(1.0 是默认值)

说明

使用串行通信协议发送和接收数据的类。

例子

// Example by Tom Igoe

import processing.serial.*;

// The serial port:
Serial myPort;       

// 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);
  
// Send a capital A out the serial port:
myPort.write(65);

方法

相关用法


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