Diferencia entre revisiones de «DEC / BIN / HEX / OCT»
De ArduWiki
(Página creada con «== Descripción == Palabras reservadas que representan los sistemas numéricos. == Sintaxis == <pre> Serial.println(variable[, tipo]); </pre> == Parámetros == ;variable:...») |
(→Referencias) |
||
(No se muestran 11 ediciones intermedias del mismo usuario) | |||
Línea 4: | Línea 4: | ||
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
+ | Serial.print(variable[, tipo]); | ||
Serial.println(variable[, tipo]); | Serial.println(variable[, tipo]); | ||
</pre> | </pre> | ||
Línea 15: | Línea 16: | ||
== Advertencias == | == Advertencias == | ||
− | + | * Nota que DEC, HEX, OCT y BIN se debe escribir en mayusculas. | |
== Ejemplos == | == Ejemplos == | ||
<syntaxhighlight lang="c++"> | <syntaxhighlight lang="c++"> | ||
+ | byte n = 'A'; | ||
+ | Serial.write(n); //A | ||
+ | Serial.println(n); //65 | ||
+ | Serial.println(n, DEC); //65 | ||
+ | Serial.println(n, HEX); //41 | ||
+ | Serial.println(n, OCT); //101 | ||
+ | Serial.println(n, BIN); //1000001 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Palabras reservadas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
== Referencias == | == Referencias == | ||
− | [[Category: | + | [[Category:Palabras reservadas]] |
Revisión actual del 22:58 6 may 2019
Contenido
Descripción
Palabras reservadas que representan los sistemas numéricos.
Sintaxis
Serial.print(variable[, tipo]); Serial.println(variable[, tipo]);
Parámetros
- variable
- Variable a evaluar.
- tipo
- indica el tipo de salida. Por omision es DEC, pero puedes usar BIN, HEX u OCT. Parámetro Opcional.
Retorno
Retorna la variable en el formato numérico solicitado
Advertencias
- Nota que DEC, HEX, OCT y BIN se debe escribir en mayusculas.
Ejemplos
byte n = 'A';
Serial.write(n); //A
Serial.println(n); //65
Serial.println(n, DEC); //65
Serial.println(n, HEX); //41
Serial.println(n, OCT); //101
Serial.println(n, BIN); //1000001
Vea también