June 01, 2010, at 09:49 AM
by Equipo Traduccion -
Changed lines 28-30 from:
to:
May 31, 2010, at 03:47 PM
by Equipo Traduccion - Revisar enlace: http://arduino.cc/en/Reference/VariableDeclaration|Variable Declaration
Changed lines 3-10 from:
Description
Long variables are extended size variables for number storage, and store 32 bits (4 bytes), from -2,147,483,648 to 2,147,483,647.
Example
[@ long speedOfLight = 186000L; // see Integer Constants for explanation of the 'L'
to:
Descripción
Las variables de tipo Long son variables de tamaño extendido para almacenamiento de números, y 32 bits (4 bytes), desde -2,147,483,648 hasta 2,147,483,647.
Ejemplo
[@ long speedOfLight = 186000L; // ver Constantes Integer para la explicación de la 'L'
Changed lines 13-14 from:
Syntax
to:
Sintaxis
Changed lines 17-22 from:
- var - the long variable name
- val - the value assigned to the variable
See Also
to:
- var - nombre de la variable tipo Long
- val - valor asignado a la variable
Ver También
June 25, 2009, at 07:04 AM
by Paul Badger -
Changed lines 28-29 from:
to:
December 28, 2008, at 06:48 PM
by Paul Badger -
Changed lines 27-28 from:
to:
September 07, 2008, at 11:08 PM
by Paul Badger -
Changed lines 17-20 from:
- var - your long variable name
- val - the value you assign to that variable
to:
- var - the long variable name
- val - the value assigned to the variable
September 07, 2008, at 11:00 PM
by Paul Badger -
September 07, 2008, at 11:00 PM
by Paul Badger -
Changed line 10 from:
[@ long speedOfLight = 186000L; // see Integer Constants
to:
[@ long speedOfLight = 186000L; // see Integer Constants for explanation of the 'L'
September 07, 2008, at 10:59 PM
by Paul Badger -
Changed line 10 from:
[@long speedOfLight = 186000L; // see Integer Constants
to:
[@ long speedOfLight = 186000L; // see Integer Constants
September 07, 2008, at 10:59 PM
by Paul Badger -
Changed lines 9-22 from:
[@
long time;
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print("Time: ");
time = millis();
//prints time since program started
Serial.println(time);
// wait a second so as not to send massive amounts of data
delay(1000);
}
to:
[@long speedOfLight = 186000L; // see Integer Constants
Added line 12:
April 16, 2007, at 06:06 PM
by David A. Mellis -
Changed lines 24-25 from:
Parameters
to:
Syntax
Changed lines 36-37 from:
to:
April 16, 2007, at 05:17 PM
by Paul Badger -
Deleted lines 37-38:
April 16, 2007, at 02:53 AM
by David A. Mellis -
Changed line 34 from:
to:
April 16, 2007, at 02:53 AM
by David A. Mellis -
Changed lines 32-35 from:
to:
April 16, 2007, at 02:07 AM
by Paul Badger -
Changed lines 5-6 from:
Long variables are extended size varialbes for number storage, and store 32 bits, from -2,147,483,648 to 2,147,483,647.
to:
Long variables are extended size variables for number storage, and store 32 bits (4 bytes), from -2,147,483,648 to 2,147,483,647.
March 31, 2006, at 03:58 PM
by Jeff Gray -
Changed line 28 from:
- var - your int variable name
to:
- var - your long variable name
March 31, 2006, at 03:50 PM
by Jeff Gray -
Changed lines 1-2 from:
long
to:
long
March 31, 2006, at 03:50 PM
by Jeff Gray -
Deleted line 23:
March 31, 2006, at 03:49 PM
by Jeff Gray -
Changed lines 9-10 from:
to:
long time;
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print("Time: ");
time = millis();
//prints time since program started
Serial.println(time);
// wait a second so as not to send massive amounts of data
delay(1000);
}
March 31, 2006, at 03:48 PM
by Jeff Gray -
Changed lines 1-2 from:
32 bits, from -2,147,483,648 to 2,147,483,647.
to:
long
Description
Long variables are extended size varialbes for number storage, and store 32 bits, from -2,147,483,648 to 2,147,483,647.
Example
int ledPin = 13;
Parameters
long var = val;
- var - your int variable name
- val - the value you assign to that variable
Reference Home
March 31, 2006, at 03:46 PM
by Jeff Gray -
Added lines 1-2:
32 bits, from -2,147,483,648 to 2,147,483,647.