Git Product home page Git Product logo

Comments (3)

geekfactory avatar geekfactory commented on June 2, 2024

Hola.

Utilizando la librerìa TimeLib en conjunto con RTCLib:

https://github.com/geekfactory/TimeLib
https://github.com/geekfactory/RTCLib

  1. Usar el metodo RTC.get() para obtener el tiempo del RTC en formato timestamp directamente.

time_t stamp = RTC.get();

  1. Obtener el tiempo desde el RTC en una estructura time_t y luego pasarlo a la funcion time_make() para que lo convierta a timestamp (Esta forma parte de la librería TimeLib). Esto lo hace en un solo paso el metodo mencionado anteriormente.

struct tm timedate;
RTC.read(timedate);
time_t time_make(&timedate);

  1. Internamente la librería TimeLib funciona como un "RTC por software" que lleva la cuenta en segundos (Tiempo Unix). Para configurar y obtener el valor actual del timestamp que va contando el CPU usamos:

// Primero poner a tiempo la libreria time, usando el RTC como referencia
time_set(RTC.get());
// Despues podemos consultar el conteo en tiempo que lleva el CPU
time_t stamp = time_get();

Espero que te sirva, saludos.

from gfrtc.

lgaticaq avatar lgaticaq commented on June 2, 2024

Muchas gracias

from gfrtc.

geekfactory avatar geekfactory commented on June 2, 2024

Espero que te sirva, saludos.

El 13/12/2015 a las 11:34 p.m., Leonardo Gatica escribió:

Muchas gracias


Reply to this email directly or view it on GitHub
#1 (comment).

from gfrtc.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.