Serial.getTimeout()

Descrição

Serial.getTimeout() retorna o valor de tempo limite configurado por Serial.setTimeout().

Serial.getTimeout() herda da classe Stream.

Sintaxe

Serial.getTimeout()

Parâmetros

  • Nenhum

Retorna

O tempo limite configurado por Serial.setTimeout() (unsigned long)

Código de Exemplo

void setup() { Serial.begin(9600); // opens serial port, sets data rate to 9600 bps Serial.println(Serial.getTimeout()); // print the default value Serial.setTimeout(1500); // set new value to 1500 milliseconds Serial.println(Serial.getTimeout()); // print the new value } void loop() { }

The result on Serial Monitor:

COM6
Send
1000 1500
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ Notas e Advertências:

Serial functions are not only used for the communication between an Arduino board and Serial Monitor of Arduino IDE but also used for the communication between:

  • An Arduino board and other Arduino board
  • An Arduino board and other sensors/devices
  • An Arduino board and computer (any Serial software on computer)* An Arduino board and other Arduino board
  • An Arduino board and other sensors/devices
  • An Arduino board and computer (any Serial software on computer)

Ver Também

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES