I want to find...

検索

Shares

Table of Content

SoftwareSerial(rxPin, txPin)

[SoftwareSerial]

説明

A call to SoftwareSerial(rxPin, txPin) creates a new SoftwareSerial object, whose name you need to provide as in the example below.

You need to call SoftwareSerial.begin() to enable communication.

媒介変数

  • rxPin: the pin on which to receive serial data
  • txPin: the pin on which to transmit serial data

#define rxPin 2
#define txPin 3
 
// set up a new serial port
SoftwareSerial mySerial =  SoftwareSerial(rxPin, txPin);

See also


Libraries Reference Home

86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール