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);

参照


ライブラリリファレンスホーム

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

上部へスクロール