Framework (A-Z)

Referencia para la versión de Wiring 1.0 Build 0100+. Si tiene una versión previa, use la referencia incluida con su software. Si encuentra errores o tiene comentarios, no dude en contactarnos.

Nombre

Constant

Ejemplos
// ...

  ConstantString big_string = Constant(
  "Stately, plump Buck Mulligan came from the stairhead, bearing a bowl ofn"
    "lather on which a mirror and a razor lay crossed. A yellow dressinggown,n"
    "ungirdled, was sustained gently behind him on the mild morning air. Hen"
    "held the bowl aloft and intoned:n"
    "--_Introibo ad altare Dei_.n"
    "Halted, he peered down the dark winding stairs and called out coarsely:n"
    "--Come up, Kinch! Come up, you fearful jesuit!n"
    "Solemnly he came forward and mounted the round gunrest. He faced aboutn"
    "and blessed gravely thrice the tower, the surrounding land and then"
    "awaking mountains. Then, catching sight of Stephen Dedalus, he bentn"
    "towards him and made rapid crosses in the air, gurgling in his throatn"
    "and shaking his head. Stephen Dedalus, displeased and sleepy, leanedn"
    "his arms on the top of the staircase and looked coldly at the shakingn"
    "gurgling face that blessed him, equine in its length, and at the lightn"
    "untonsured hair, grained and hued like pale oak.n");

  Serial.println(Constant("The big string is, quote:"));
  Serial.println(big_string);
	
// ...
Descripción Constant es el constructor del tipo de datos Constant para cadenas de caracteres (strings) de solo lectura. Estos tipos de datos no están localizados en memoria RAM lo que permite ahorrar memoria para otros datos que si lo requieran. Use estos tipos de datos para guardar datos que son constantes (datos que van a cambiarár durante toda la vida del programa).
Sintaxis
ConstantString var = Constant("su string constante");
Constant("otro string constante");
Parámetros
var nombre de la variable que referencia el valor
Uso Application
Relacionados Constant
ConstantString
ByteTable
CharTable
UCharTable
IntTable
UIntTable
LongTable
ULongTable
FloatTable
DoubleTable
Updated on July 07, 2011 11:12:43pm PDT

Creative Commons License