Librerías
\ EEPROMVar
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 |
EEPROMVar |
Ejemplos |
#include <EEPROM.h>
#include <EEPROMVar.h>
EEPROMVar<int> eepromRunCounts(1);
EEPROMVar<float> eepromPI(3.1415f);
void setup()
{
Serial.begin(115200);
Serial.print("This program has been ran ");
Serial.print(eepromRunCounts);
if (eepromRunCounts==1)
{
Serial.println(" time.");
}
else
{
Serial.println(" times.");
}
Serial.print("As it multiplies PI by two each execution, the current value is ");
Serial.println(eepromPI);
eepromRunCounts++;
eepromPI *= 2;
}
void loop() {
}
|
Descripción |
Inicializa el EEPROMVar. Esta es una librería para variables que necesitan persistir a través de ciclos de corriente. Automáticamente se guarda en el EEPROM cada vez que el valor cambia. |
Sintaxis |
EEPROMVar < datatype > variable(value)
|
Parámetros |
datatype |
El tipo de dato de la variable |
variable |
Nombre de la variable referenciando el valor |
value |
El valor inicial de esta variable EEPROMVar |
|
Retorna |
Ninguno |
Uso |
Application |
Updated on July 07, 2011 11:14:32pm PDT