Diferencia entre revisiones de «setTime()»
De ArduWiki
(Página creada con «La función '''setTime()''' esta disponible luego de invocada la libreria '''TimeLib.h''' y nos permite decirle al Arduino en que día y hora estamos y que a partir de all...») |
(→Vea también) |
||
Línea 8: | Línea 8: | ||
== Vea también == | == Vea también == | ||
* [[Fecha y hora]] | * [[Fecha y hora]] | ||
− | |||
* [[time_t]] - TimeLib.h | * [[time_t]] - TimeLib.h | ||
* [[tmElements_t]] - TimeLib.h | * [[tmElements_t]] - TimeLib.h | ||
+ | * [[now()]] - TimeLib.h | ||
+ | * [[makeTime()]] - TimeLib.h | ||
* [[DateTime]] - RTClib.h | * [[DateTime]] - RTClib.h | ||
Revisión del 16:14 23 mar 2019
La función setTime() esta disponible luego de invocada la libreria TimeLib.h y nos permite decirle al Arduino en que día y hora estamos y que a partir de allí mantenga adecuadamente esa fecha hasta su próximo reseteo.
setTime(ss); //Numero de segundos desde 1-ENE-1970 setTime(hh,mm,ss,dia,mes,año); //hora, minuto,segundo dia, mes, año
Vea también
- Fecha y hora
- time_t - TimeLib.h
- tmElements_t - TimeLib.h
- now() - TimeLib.h
- makeTime() - TimeLib.h
- DateTime - RTClib.h