hello someone can help. I'm having trouble with the lines.
if (now.hour == OnHour && now.minute == OnMin){
digitalWrite(Relay,HIGH);
Serial.println("LIGHT ON");
}
else if (now.hour == OffHour && now.min == OffMin){
digitalWrite(Relay,LOW);
Serial.println("LIGHT OFF");
I must be doing something wrong. thank you
// Date and time functions using a DS3231 RTC connected via I2C and Wire lib
#include <Wire.h>
#include "RTClib.h"
RTC_DS3231 rtc;
char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
const int OnHour = 12;
const int OnMin = 24;
const int OffHour = 12;
const int OffMin = 25;
int Relay = 9;
void setup () {
#ifndef ESP8266
while (!Serial); // for Leonardo/Micro/Zero
#endif
pinMode(Relay, OUTPUT);
Serial.begin(9600);
delay(3000); // wait for console opening
if (! rtc.begin()) {
Serial.println("Couldn't find RTC");
while (1);
}
if (rtc.lostPower()) {
Serial.println("RTC lost power, lets set the time!");
// following line sets the RTC to the date & time this sketch was compiled
rtc.adjust(DateTime(F(DATE), F(TIME)));
// This line sets the RTC with an explicit date & time, for example to set
// January 21, 2014 at 3am you would call:
// rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));
}
}
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(daysOfTheWeek[now.dayOfTheWeek()]);
Serial.print(") ");
Serial.print(now.hour(), DEC);
Serial.print(':');
Serial.print(now.minute(), DEC);
Serial.print(':');
Serial.print(now.second(), DEC);
Serial.println();
if (now.hour == OnHour && now.minute == OnMin){
digitalWrite(Relay,HIGH);
Serial.println("LIGHT ON");
}
else if (now.hour == OffHour && now.min == OffMin){
digitalWrite(Relay,LOW);
Serial.println("LIGHT OFF");
}
delay(3000);
}
}