Serial.parseInt()

Descrição

Procura o próximo inteiro válido no buffer de recebimento serial. A função retorna se acabar o tempo limite (veja Serial.setTimeout()).

A função Serial.parseInt() é herdada da classe Stream.

Em particular:

  • Caracteres iniciais que não são dígitos ou um sinal de menos, são ignorados;
  • O Parsing termina quando caractetes não foram lidos em um time-out configurável, ou um valor não-digito é lido;
  • Se nenhum dígito válido foi lido quando ocorre o time-out (ver Serial.setTimeout()), 0 é retornado;

Sintaxe

Serial.parseInt()

Serial.parseInt(char skipChar)

Parâmetros

  • Serial: objeto porta serial. Veja a lista de portas seriais disponíveis em cada placa no Serial - Página principal
  • skipChar: usado para ignorar o caractere indicado na busca. Usado, por exemplo, para ignorar o ponto em "2.000.000".

Retorna

O próximo inteiro válido - long.

Código de Exemplo

void setup() { Serial.begin(9600); } void loop() { if (Serial.available() > 0) { long myInt = Serial.parseInt(SKIP_ALL, '\n'); // prints the received integer Serial.print("I received: "); Serial.println(myInt); } }
  • Compile and upload the above code to Arduino
  • Open Serial Monitor and select Newline option
  • Type -125 on Serial Monitor and click Send button:
COM6
Send
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  
  • The result on Serial Monitor:
COM6
Send
I received: -125
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