Hide minor edits - Show changes to markup
none
the character read
ninguno
el caracter leído
Reads a character from the receive pin of the software serial port. This function waits for a character to arrive, reads it, and returns the character read. Data that arrives at other times is lost.
Lee un caracter del pin de recepción del puerto SoftwareSerial. Esta función espera a que llegue un caracter, lo lee, y devuelve el caracter leido. Los datos que llegan en otro momento se pierden.
} @]
} @]
Reads a character from the receive pin of the software serial port. This function waits for a character to arrive, reads it, and returns the character read. Data that arrives at other times is lost.
none
the character read
SoftwareSerial serial(6, 7);
void setup()
{
serial.begin(9600);
}
void loop()
{
char c = serial.read();
}