1
1
---
2
2
title: "isGraph()"
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 printable with some content (space is printable but has no content ). Returns true if thisChar is printable .
20
+ === Descrição
21
+ Analisa se um caractere é imprimível com algum conteúdo (espaços são imprimíveis, mas não possuem conteúdo ). Retorna true se thisChar é imprimível .
22
22
[%hardbreaks]
23
23
24
24
25
25
[float]
26
- === Syntax
26
+ === Sintaxe
27
27
[source,arduino]
28
28
----
29
29
`isGraph(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 printable .
37
+ === Retorna
38
+ `true`: se thisChar é imprimível .
39
39
40
40
--
41
41
// OVERVIEW SECTION ENDS
@@ -47,11 +47,11 @@ Analyse if a char is printable with some content (space is printable but has no
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 (isGraph(this)) // tests if this is a printable character but not a blank space .
54
+ if (isGraph(this)) // testa se this é um caractere imprimível mas não um espaço .
55
55
{
56
56
Serial.println("The character is printable");
57
57
}
74
74
=== See also
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
+ * #LINGUAGEM # 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