[Projet]Serre

Bonjours tous le monde,
j'ai reçu ma commande !!! J'ai essayé tous un par un ça marche nickel sauf le rtc.
Je m'expliqe, j'arrive pas a configurer l'heure.Voici le code

// DS1302_Serial_Easy (C)2010 Henning Karlsen
// web: http://www.henningkarlsen.com/electronics
//
// A quick demo of how to use my DS1302-library to 
// quickly send time and date information over a serial link
//
// I assume you know how to connect the DS1302.
// DS1302:  CE pin    -> Arduino Digital 2
//          I/O pin   -> Arduino Digital 3
//          SCLK pin  -> Arduino Digital 4

#include <DS1302.h>

// Init the DS1302
DS1302 rtc(2, 3, 4);

void setup()
{
// Set the clock to run-mode, and disable the write protection
  rtc.halt(false);
  rtc.writeProtect(false);

// Setup Serial connection
  Serial.begin(9600);

// The following lines can be commented out to use the values already stored in the DS1302
  rtc.setDOW(THURSDAY);        // Set Day-of-Week to FRIDAY
  rtc.setTime(01, 19, 0);     // Set the time to 12:00:00 (24hr format)
  rtc.setDate(10, 4, 2012);   // Set the date to August 6th, 2010
}

void loop()
{
// Send Day-of-Week
  Serial.print(rtc.getDOWStr());
  Serial.print(" ");

// Send date
  Serial.print(rtc.getDateStr());
  Serial.print(" -- ");

// Send time
  Serial.println(rtc.getTimeStr());

// Wait one second before repeating :)
  delay (1000);
}

Je ne vois pas ce qu'il cloche, j'ai passé l'après-midi a chercher differente lib.

Ps: source Electronics - Henning Karlsen