Diferencia entre revisiones de «now()»
De ArduWiki
(Página creada con «== Descripción == == Sintaxis == <pre> DateTime variable = rtc.now(); </pre> == Parámetros == ;variable:Nombre de la variable de tipo DateTime == Retorno == Fecha...») |
(→Parámetros) |
||
(No se muestran 16 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
== Descripción == | == Descripción == | ||
+ | Lee la fecha y hora actual desde le reloj. | ||
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
− | DateTime | + | //#include <Wire.h> //Solo si usas reloj físico |
+ | #include <RTClib.h> | ||
+ | RTC_Millis rtc; //Reloj por software | ||
+ | //RTC_DS1307 rtc; //Reloj con DS1307 | ||
+ | //RTC_DS3231 rtc; //Reloj con DS3231 | ||
+ | //RTC_PCF8523 rtc; //Reloj con PCF8523 | ||
+ | |||
+ | DateTime hoy = rtc.now(); | ||
</pre> | </pre> | ||
== Parámetros == | == Parámetros == | ||
− | ; | + | ;hoy:Nombre de la variable de tipo [[DateTime]] |
== Retorno == | == Retorno == | ||
− | Fecha y hora actual en formato [[DateTime]] | + | Fecha y hora actual en formato UnixTimeStamp del tipo [[DateTime]] |
== Comentarios == | == Comentarios == | ||
Línea 16: | Línea 24: | ||
== Advertencia == | == Advertencia == | ||
− | + | Cuidado porque existe la función '''now()''' en ambas librerias [[Time|TimeLib.h]] y [[RTC|RTClib.h]]. | |
== Ejemplo 1 == | == Ejemplo 1 == | ||
+ | <syntaxhighlight lang="c++"> | ||
+ | //#include <Wire.h> | ||
+ | #include <RTClib.h> | ||
+ | |||
+ | RTC_Millis rtc; //Reloj por software | ||
+ | //RTC_DS1307 rtc; //Reloj con DS1307 | ||
+ | //RTC_DS3231 rtc; //Reloj con DS3231 | ||
+ | |||
+ | DateTime hoy,anterior = 0; | ||
+ | |||
+ | void setup () { | ||
+ | Serial.begin(57600); | ||
+ | //Para setear RTC con fecha y hora cuando se compila | ||
+ | //rtc.adjust(DateTime(F(__DATE__), F(__TIME__))); | ||
+ | //Para setear RTC a 21-MAR-2019 8:00:00 | ||
+ | rtc.adjust(DateTime(2019, 3, 21, 8, 0, 0)); | ||
+ | } | ||
+ | |||
+ | void loop(){ | ||
+ | hoy = rtc.now(); | ||
+ | if (hoy.second() != anterior.second()){ | ||
+ | anterior = hoy; | ||
+ | Serial.print(hoy.year()); | ||
+ | Serial.print('-'); | ||
+ | Serial.print(hoy.month()); | ||
+ | Serial.print('-'); | ||
+ | Serial.print(hoy.day()); | ||
+ | Serial.print(' '); | ||
+ | Serial.print(hoy.hour()); | ||
+ | Serial.print(':'); | ||
+ | Serial.print(hoy.minute()); | ||
+ | Serial.print(':'); | ||
+ | Serial.println(hoy.second()); | ||
+ | } | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Libreria RTC</categorytree> | |
− | |||
− | |||
− | |||
− | |||
== Referencias == | == Referencias == | ||
* [https://github.com/adafruit/RTClib RTClib] - Adafruit | * [https://github.com/adafruit/RTClib RTClib] - Adafruit | ||
− | [[Category: | + | [[Category:Libreria RTC]] |
Revisión actual del 17:00 23 ene 2020
Contenido
Descripción
Lee la fecha y hora actual desde le reloj.
Sintaxis
//#include <Wire.h> //Solo si usas reloj físico #include <RTClib.h> RTC_Millis rtc; //Reloj por software //RTC_DS1307 rtc; //Reloj con DS1307 //RTC_DS3231 rtc; //Reloj con DS3231 //RTC_PCF8523 rtc; //Reloj con PCF8523 DateTime hoy = rtc.now();
Parámetros
- hoy
- Nombre de la variable de tipo DateTime
Retorno
Fecha y hora actual en formato UnixTimeStamp del tipo DateTime
Comentarios
Nada
Advertencia
Cuidado porque existe la función now() en ambas librerias TimeLib.h y RTClib.h.
Ejemplo 1
//#include <Wire.h>
#include <RTClib.h>
RTC_Millis rtc; //Reloj por software
//RTC_DS1307 rtc; //Reloj con DS1307
//RTC_DS3231 rtc; //Reloj con DS3231
DateTime hoy,anterior = 0;
void setup () {
Serial.begin(57600);
//Para setear RTC con fecha y hora cuando se compila
//rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
//Para setear RTC a 21-MAR-2019 8:00:00
rtc.adjust(DateTime(2019, 3, 21, 8, 0, 0));
}
void loop(){
hoy = rtc.now();
if (hoy.second() != anterior.second()){
anterior = hoy;
Serial.print(hoy.year());
Serial.print('-');
Serial.print(hoy.month());
Serial.print('-');
Serial.print(hoy.day());
Serial.print(' ');
Serial.print(hoy.hour());
Serial.print(':');
Serial.print(hoy.minute());
Serial.print(':');
Serial.println(hoy.second());
}
}
Vea también
Referencias
- RTClib - Adafruit