Skip to content

Updated detachInterrupt() file #187

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

Merged
merged 2 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
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
164 changes: 82 additions & 82 deletions Language/Functions/Characters/isAlpha.adoc
Original file line number Diff line number Diff line change
@@ -1,82 +1,82 @@
---
title: "isAlpha()"
categories: [ "Functions" ]
subCategories: [ "Caracteres" ]
---
= isAlpha(thisChar)
// OVERVIEW SECTION STARTS
[#overview]
--
[float]
=== Descrição
Analisa se um caractere é alfabético (isto é, se é uma letra). Retorna true (verdadeiro) se thisChar contém uma letra.
[%hardbreaks]
[float]
=== Sintaxe
[source,arduino]
----
isAlpha(thisChar)
----
[float]
=== Parâmetros
`thisChar`: variável. *Tipos de dados permitidos:* char
[float]
=== Retorna
`true`: se thisChar é um caractere alfabético.
--
// OVERVIEW SECTION ENDS
// HOW TO USE SECTION STARTS
[#howtouse]
--
[float]
=== Código de Exemplo
O código a seguir testa se uma variável chamada this é uma letra.
[source,arduino]
----
if (isAlpha(this)) // testa se a variável this é uma letra
{
Serial.println("The character is alpha");
}
else
{
Serial.println("The character is not alpha");
}
----
--
// HOW TO USE SECTION ENDS
// SEE ALSO SECTION
[#see_also]
--
[float]
=== Ver Também
[role="language"]
#LINGUAGEM# link:../../../variables/data-types/char[char]
#LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
#LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
#LINGUAGEM# link:../../communication/serial/read[read()]
--
// SEE ALSO SECTION ENDS
---
title: "isAlpha()"
categories: [ "Functions" ]
subCategories: [ "Caracteres" ]
---





= isAlpha(thisChar)


// OVERVIEW SECTION STARTS
[#overview]
--

[float]
=== Descrição
Analisa se um caractere é alfabético (isto é, se é uma letra). Retorna true (verdadeiro) se thisChar contém uma letra.
[%hardbreaks]


[float]
=== Sintaxe
[source,arduino]
----
isAlpha(thisChar)
----

[float]
=== Parâmetros
`thisChar`: variável. *Tipos de dados permitidos:* char

[float]
=== Retorna
`true`: se thisChar é um caractere alfabético.

--
// OVERVIEW SECTION ENDS



// HOW TO USE SECTION STARTS
[#howtouse]
--

[float]
=== Código de Exemplo
O código a seguir testa se uma variável chamada this é uma letra.
[source,arduino]
----
if (isAlpha(this)) // testa se a variável this é uma letra
{
Serial.println("The character is alpha");
}
else
{
Serial.println("The character is not alpha");
}

----

--
// HOW TO USE SECTION ENDS


// SEE ALSO SECTION
[#see_also]
--

[float]
=== Ver Também

[role="language"]
#LINGUAGEM# link:../../../variables/data-types/char[char]
#LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
#LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
#LINGUAGEM# link:../../communication/serial/read[read()]

--
// SEE ALSO SECTION ENDS
164 changes: 82 additions & 82 deletions Language/Functions/Characters/isAlphaNumeric.adoc
Original file line number Diff line number Diff line change
@@ -1,82 +1,82 @@
---
title: "isAlphaNumeric()"
categories: [ "Functions" ]
subCategories: [ "Caracteres" ]
---
= isAlphaNumeric(thisChar)
// OVERVIEW SECTION STARTS
[#overview]
--
[float]
=== Descrição
Analisa se um caractere é alfanumérico (isto é, uma letra ou um número). Retorna true (verdadeiro) se thisChar contém ou uma letra ou um número.
[%hardbreaks]
[float]
=== Sintaxe
[source,arduino]
----
isAlphaNumeric(thisChar)
----
[float]
=== Parâmetros
`thisChar`: variável. *Tipos de dados permitidos:* char
[float]
=== Retorna
`true`: se a variável thisChar é uma letra ou um número..
--
// OVERVIEW SECTION ENDS
// HOW TO USE SECTION STARTS
[#howtouse]
--
[float]
=== Código de Exemplo
[source,arduino]
----
if (isAlphaNumeric(this)) // testa se this é uma letra ou um número
{
Serial.println("The character is alphanumeric");
}
else
{
Serial.println("The character is not alphanumeric");
}
----
--
// HOW TO USE SECTION ENDS
// SEE ALSO SECTION
[#see_also]
--
[float]
=== Ver Também
[role="language"]
* #LINGUAGEM# link:../../../variables/data-types/char[char]
* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
* #LINGUAGEM# link:../../communication/serial/read[read()]
--
// SEE ALSO SECTION ENDS
---
title: "isAlphaNumeric()"
categories: [ "Functions" ]
subCategories: [ "Caracteres" ]
---





= isAlphaNumeric(thisChar)


// OVERVIEW SECTION STARTS
[#overview]
--

[float]
=== Descrição
Analisa se um caractere é alfanumérico (isto é, uma letra ou um número). Retorna true (verdadeiro) se thisChar contém ou uma letra ou um número.
[%hardbreaks]


[float]
=== Sintaxe
[source,arduino]
----
isAlphaNumeric(thisChar)
----

[float]
=== Parâmetros
`thisChar`: variável. *Tipos de dados permitidos:* char

[float]
=== Retorna
`true`: se a variável thisChar é uma letra ou um número..

--
// OVERVIEW SECTION ENDS



// HOW TO USE SECTION STARTS
[#howtouse]
--

[float]
=== Código de Exemplo

[source,arduino]
----
if (isAlphaNumeric(this)) // testa se this é uma letra ou um número
{
Serial.println("The character is alphanumeric");
}
else
{
Serial.println("The character is not alphanumeric");
}

----

--
// HOW TO USE SECTION ENDS


// SEE ALSO SECTION
[#see_also]
--

[float]
=== Ver Também

[role="language"]
* #LINGUAGEM# link:../../../variables/data-types/char[char]
* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
* #LINGUAGEM# link:../../communication/serial/read[read()]

--
// SEE ALSO SECTION ENDS
Loading