Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Serial.find translated to spanish #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Language/Functions/Communication/Serial/find.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ title: Serial.find()
--

[float]
=== Description
Serial.find() reads data from the serial buffer until the target string of given length is found. The function returns true if target string is found, false if it times out.
=== Descripción
Serial.find() lee datos del buffer serial hasta que la cadena buscada de longitud dada es encontrada. La función devuelve true si la cadena es encontrada y si no.

Serial.find() inherits from the link:../../stream[stream] utility class.
Serial.find() hereda de la clase link:../../stream[stream]
[%hardbreaks]


[float]
=== Syntax
=== Sintaxis
`Serial.find(target)`

[float]
=== Parameters
`target` : the string to search for (char)
=== Parámetros
`target` : cadena de caracteres a buscar (char)

[float]
=== Returns
=== Devuelve
`boolean`

--
Expand All @@ -41,7 +41,7 @@ Serial.find() inherits from the link:../../stream[stream] utility class.
--

[float]
=== See also
=== Ver también

[role="language"]
* #LANGUAGE# link:../../stream[stream] +
Expand Down