clck en tiempo real -RTC DS 1307- a Arduino

2

Estoy tratando de conectar la ds1307 a Arduino para obtener la hora en la pantalla LCD y utilicé este circuito en mi proyecto y probé el código de ejemplo en la biblioteca pero no funcionó. ¿Cuál podría ser el problema?

el código:

#include <Wire.h>
#include "RTClib.h"

RTC_DS1307 RTC;

void setup () {
    Serial.begin(57600);
    Wire.begin();
    RTC.begin();

  if (! RTC.isrunning()) {
    Serial.println("RTC is NOT running!");
    // following line sets the RTC to the date & time this sketch was compiled
    //RTC.adjust(DateTime(__DATE__, __TIME__));
  }

}

void loop () {
    DateTime now = RTC.now();

    Serial.print(now.year(), DEC);
    Serial.print('/');
    Serial.print(now.month(), DEC);
    Serial.print('/');
    Serial.print(now.day(), DEC);
    Serial.print(' ');
    Serial.print(now.hour(), DEC);
    Serial.print(':');
    Serial.print(now.minute(), DEC);
    Serial.print(':');
    Serial.print(now.second(), DEC);
    Serial.println();

    Serial.print(" since 1970 = ");
    Serial.print(now.unixtime());
    Serial.print("s = ");
    Serial.print(now.unixtime() / 86400L);
    Serial.println("d");

    // calculate a date which is 7 days and 30 seconds into the future
    DateTime future (now.unixtime() + 7 * 86400L + 30);

    Serial.print(" now + 7d + 30s: ");
    Serial.print(future.year(), DEC);
    Serial.print('/');
    Serial.print(future.month(), DEC);
    Serial.print('/');
    Serial.print(future.day(), DEC);
    Serial.print(' ');
    Serial.print(future.hour(), DEC);
    Serial.print(':');
    Serial.print(future.minute(), DEC);
    Serial.print(':');
    Serial.print(future.second(), DEC);
    Serial.println();

    Serial.println();
    delay(3000);
}

============================

    
pregunta alone

1 respuesta

2

No funcionará si no hay detonaciones en las líneas, porque I2C usa un bus de drenaje abierto.

Agregue un resistor de 2.2 k ((puede ser cualquier cosa entre esto y 10 kΩ, un valor más bajo es mejor para líneas largas y mayor velocidad de reloj) de SCL a + 5V y también otro de SDA a + 5V (así que uno entre los pines DS1307 5 y 8, otro entre los pines 6 y 8).

Las resistencias (marcadas Rp) se muestran a continuación:

Sinecesitalaondacuadradahaciafuera,tambiénnecesitaráundespliegueenesto,losdetallesseencuentranenlahojadedatosde .

    
respondido por el Oli Glaser

Lea otras preguntas en las etiquetas