當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。