Libraries
\ SoftwareSerial
Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Name |
SoftwareSerial |
Examples |
#include "SoftwareSerial.h"
int val;
SoftwareSerial port = SoftwareSerial(8, 9);
void setup() {
pinMode(8, INPUT);
pinMode(9, OUTPUT);
port.begin(9600);
}
void loop() {
val = port.read();
port.print(val);
}
|
Description |
The SoftwareSerial class allows for creation and manipulation of software serial ports, allowing for additional serial ports besides the two hardware ports available in the Wiring I/O board. Typical baudrates are: 2400, 4800, 9600, 14400, 19200, 28800, 38400, 57600 and 115200. |
Syntax |
SoftwareSerial
|
Methods |
|
Returns |
None |
Usage |
Application |
Updated on July 07, 2011 11:11:37pm PDT