1
1
---
2
2
title: "isHexadecimalDigit()"
3
3
categories: [ "Functions" ]
4
- subCategories: [ "Characters " ]
4
+ subCategories: [ "Caracteres " ]
5
5
---
6
6
7
7
:source-highlighter: pygments
@@ -17,25 +17,25 @@ subCategories: [ "Characters" ]
17
17
--
18
18
19
19
[float]
20
- === Description
21
- Analyse if a char is an hexadecimal digit (A-F, 0-9). Returns true if thisChar contains an hexadecimal digit .
20
+ === Descrição
21
+ Analisa se uma caractere é um digito hexadecimal (A-F, 0-9). Retorna true se thisChar contém um digito hexadecimal .
22
22
[%hardbreaks]
23
23
24
24
25
25
[float]
26
- === Syntax
26
+ === Sintaxe
27
27
[source,arduino]
28
28
----
29
29
`isHexadecilamDigit(thisChar)`
30
30
----
31
31
32
32
[float]
33
- === Parameters
34
- `thisChar`: variable . *Allowed data types :* char
33
+ === Parâmetros
34
+ `thisChar`: variável . *Tipos de dados permitidos :* char
35
35
36
36
[float]
37
- === Returns
38
- `true`: if thisChar is an hexadecimal digit .
37
+ === Retorna
38
+ `true`: se thisChar é um digito hexadecimal .
39
39
40
40
--
41
41
// OVERVIEW SECTION ENDS
@@ -47,11 +47,11 @@ Analyse if a char is an hexadecimal digit (A-F, 0-9). Returns true if thisChar c
47
47
--
48
48
49
49
[float]
50
- === Example Code
50
+ === Código de Exemplo
51
51
52
52
[source,arduino]
53
53
----
54
- if (isHexadecimalDigit(this)) // tests if this is an hexadecimal digit
54
+ if (isHexadecimalDigit(this)) // testa se this é um digito hexadecimal
55
55
{
56
56
Serial.println("The character is an hexadecimal digit");
57
57
}
71
71
--
72
72
73
73
[float]
74
- === See also
74
+ === Ver Também
75
75
76
76
[role="language"]
77
- * #LANGUAGE # link:../../../variables/data-types/char[char]
78
- * #LANGUAGE # link:../../../structure/control-structure/if[if (conditional operators )]
79
- * #LANGUAGE # link:../../../structure/control-structure/while[while (conditional operators )]
80
- * #LANGUAGE # link:../../communication/serial/read[read()]
77
+ * #INGUAGEM # link:../../../variables/data-types/char[char]
78
+ * #LINGUAGEM # link:../../../structure/control-structure/if[if (operadores condicionais )]
79
+ * #LINGUAGEM # link:../../../structure/control-structure/while[while (operadores condicionais )]
80
+ * #LINGUAGEM # link:../../communication/serial/read[read()]
81
81
82
82
--
83
- // SEE ALSO SECTION ENDS
83
+ // SEE ALSO SECTION ENDS
0 commit comments