Skip to content

Commit 23e4ba5

Browse files
authored
Merge pull request #187 from robsoncouto/master
Updated detachInterrupt() file
2 parents b9027e8 + cb9cecf commit 23e4ba5

File tree

14 files changed

+1071
-1070
lines changed

14 files changed

+1071
-1070
lines changed
Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
1-
---
2-
title: "isAlpha()"
3-
categories: [ "Functions" ]
4-
subCategories: [ "Caracteres" ]
5-
---
6-
7-
8-
9-
10-
11-
= isAlpha(thisChar)
12-
13-
14-
// OVERVIEW SECTION STARTS
15-
[#overview]
16-
--
17-
18-
[float]
19-
=== Descrição
20-
Analisa se um caractere é alfabético (isto é, se é uma letra). Retorna true (verdadeiro) se thisChar contém uma letra.
21-
[%hardbreaks]
22-
23-
24-
[float]
25-
=== Sintaxe
26-
[source,arduino]
27-
----
28-
isAlpha(thisChar)
29-
----
30-
31-
[float]
32-
=== Parâmetros
33-
`thisChar`: variável. *Tipos de dados permitidos:* char
34-
35-
[float]
36-
=== Retorna
37-
`true`: se thisChar é um caractere alfabético.
38-
39-
--
40-
// OVERVIEW SECTION ENDS
41-
42-
43-
44-
// HOW TO USE SECTION STARTS
45-
[#howtouse]
46-
--
47-
48-
[float]
49-
=== Código de Exemplo
50-
O código a seguir testa se uma variável chamada this é uma letra.
51-
[source,arduino]
52-
----
53-
if (isAlpha(this)) // testa se a variável this é uma letra
54-
{
55-
Serial.println("The character is alpha");
56-
}
57-
else
58-
{
59-
Serial.println("The character is not alpha");
60-
}
61-
62-
----
63-
64-
--
65-
// HOW TO USE SECTION ENDS
66-
67-
68-
// SEE ALSO SECTION
69-
[#see_also]
70-
--
71-
72-
[float]
73-
=== Ver Também
74-
75-
[role="language"]
76-
#LINGUAGEM# link:../../../variables/data-types/char[char]
77-
#LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
78-
#LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
79-
#LINGUAGEM# link:../../communication/serial/read[read()]
80-
81-
--
82-
// SEE ALSO SECTION ENDS
1+
---
2+
title: "isAlpha()"
3+
categories: [ "Functions" ]
4+
subCategories: [ "Caracteres" ]
5+
---
6+
7+
8+
9+
10+
11+
= isAlpha(thisChar)
12+
13+
14+
// OVERVIEW SECTION STARTS
15+
[#overview]
16+
--
17+
18+
[float]
19+
=== Descrição
20+
Analisa se um caractere é alfabético (isto é, se é uma letra). Retorna true (verdadeiro) se thisChar contém uma letra.
21+
[%hardbreaks]
22+
23+
24+
[float]
25+
=== Sintaxe
26+
[source,arduino]
27+
----
28+
isAlpha(thisChar)
29+
----
30+
31+
[float]
32+
=== Parâmetros
33+
`thisChar`: variável. *Tipos de dados permitidos:* char
34+
35+
[float]
36+
=== Retorna
37+
`true`: se thisChar é um caractere alfabético.
38+
39+
--
40+
// OVERVIEW SECTION ENDS
41+
42+
43+
44+
// HOW TO USE SECTION STARTS
45+
[#howtouse]
46+
--
47+
48+
[float]
49+
=== Código de Exemplo
50+
O código a seguir testa se uma variável chamada this é uma letra.
51+
[source,arduino]
52+
----
53+
if (isAlpha(this)) // testa se a variável this é uma letra
54+
{
55+
Serial.println("The character is alpha");
56+
}
57+
else
58+
{
59+
Serial.println("The character is not alpha");
60+
}
61+
62+
----
63+
64+
--
65+
// HOW TO USE SECTION ENDS
66+
67+
68+
// SEE ALSO SECTION
69+
[#see_also]
70+
--
71+
72+
[float]
73+
=== Ver Também
74+
75+
[role="language"]
76+
#LINGUAGEM# link:../../../variables/data-types/char[char]
77+
#LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
78+
#LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
79+
#LINGUAGEM# link:../../communication/serial/read[read()]
80+
81+
--
82+
// SEE ALSO SECTION ENDS
Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
1-
---
2-
title: "isAlphaNumeric()"
3-
categories: [ "Functions" ]
4-
subCategories: [ "Caracteres" ]
5-
---
6-
7-
8-
9-
10-
11-
= isAlphaNumeric(thisChar)
12-
13-
14-
// OVERVIEW SECTION STARTS
15-
[#overview]
16-
--
17-
18-
[float]
19-
=== Descrição
20-
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.
21-
[%hardbreaks]
22-
23-
24-
[float]
25-
=== Sintaxe
26-
[source,arduino]
27-
----
28-
isAlphaNumeric(thisChar)
29-
----
30-
31-
[float]
32-
=== Parâmetros
33-
`thisChar`: variável. *Tipos de dados permitidos:* char
34-
35-
[float]
36-
=== Retorna
37-
`true`: se a variável thisChar é uma letra ou um número..
38-
39-
--
40-
// OVERVIEW SECTION ENDS
41-
42-
43-
44-
// HOW TO USE SECTION STARTS
45-
[#howtouse]
46-
--
47-
48-
[float]
49-
=== Código de Exemplo
50-
51-
[source,arduino]
52-
----
53-
if (isAlphaNumeric(this)) // testa se this é uma letra ou um número
54-
{
55-
Serial.println("The character is alphanumeric");
56-
}
57-
else
58-
{
59-
Serial.println("The character is not alphanumeric");
60-
}
61-
62-
----
63-
64-
--
65-
// HOW TO USE SECTION ENDS
66-
67-
68-
// SEE ALSO SECTION
69-
[#see_also]
70-
--
71-
72-
[float]
73-
=== Ver Também
74-
75-
[role="language"]
76-
* #LINGUAGEM# link:../../../variables/data-types/char[char]
77-
* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
78-
* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
79-
* #LINGUAGEM# link:../../communication/serial/read[read()]
80-
81-
--
82-
// SEE ALSO SECTION ENDS
1+
---
2+
title: "isAlphaNumeric()"
3+
categories: [ "Functions" ]
4+
subCategories: [ "Caracteres" ]
5+
---
6+
7+
8+
9+
10+
11+
= isAlphaNumeric(thisChar)
12+
13+
14+
// OVERVIEW SECTION STARTS
15+
[#overview]
16+
--
17+
18+
[float]
19+
=== Descrição
20+
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.
21+
[%hardbreaks]
22+
23+
24+
[float]
25+
=== Sintaxe
26+
[source,arduino]
27+
----
28+
isAlphaNumeric(thisChar)
29+
----
30+
31+
[float]
32+
=== Parâmetros
33+
`thisChar`: variável. *Tipos de dados permitidos:* char
34+
35+
[float]
36+
=== Retorna
37+
`true`: se a variável thisChar é uma letra ou um número..
38+
39+
--
40+
// OVERVIEW SECTION ENDS
41+
42+
43+
44+
// HOW TO USE SECTION STARTS
45+
[#howtouse]
46+
--
47+
48+
[float]
49+
=== Código de Exemplo
50+
51+
[source,arduino]
52+
----
53+
if (isAlphaNumeric(this)) // testa se this é uma letra ou um número
54+
{
55+
Serial.println("The character is alphanumeric");
56+
}
57+
else
58+
{
59+
Serial.println("The character is not alphanumeric");
60+
}
61+
62+
----
63+
64+
--
65+
// HOW TO USE SECTION ENDS
66+
67+
68+
// SEE ALSO SECTION
69+
[#see_also]
70+
--
71+
72+
[float]
73+
=== Ver Também
74+
75+
[role="language"]
76+
* #LINGUAGEM# link:../../../variables/data-types/char[char]
77+
* #LINGUAGEM# link:../../../structure/control-structure/if[if (operadores condicionais)]
78+
* #LINGUAGEM# link:../../../structure/control-structure/while[while (operadores condicionais)]
79+
* #LINGUAGEM# link:../../communication/serial/read[read()]
80+
81+
--
82+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)