Aide utilisation RTC

Salut,

je souhaite allumer un objet via un relay à un certain moment de la journée.
j'utilise donc une RTC basé sur un DS1302. malheureusement je n'arrive pas a faire fonctionner mon programe...

Je ne maîtrise pas bien la programmation quel qu'un peut-il me donner un coup de pouce ?

#include <virtuabotixRTC.h>
virtuabotixRTC myRTC(6, 7, 8);

const int RELAY=11;
int HEURE;

void setup() {
Serial.begin(9600);

pinMode(LED, OUTPUT);

HEURE=0;
}

void loop() {

myRTC.updateTime();
HEURE=myRTC.hours;

if((HEURE==0) && (HEURE==5));
{
digitalWrite(RELAY, HIGH);
}
else
{
digitalWrite(RELAY, LOW);
}
delay( 1000);
}

Le message d'erreur :

virtuabotixRTC:25:3: error: 'else' without a previous 'if'

exit status 1
'else' without a previous 'if'

La librairie : How to simply use DS1302 RTC module with Arduino board and LCD screen – SURTR TECHNOLOGY

Merci beaucoup d'avance !

Enleve la virgule a la fin du if if((HEURE==0) && (HEURE==5)); <==== ici