// DS3231 - Version: Latest
#include <DS3231.h>
DS3231 rtc(SDA,SCL);
int relay =A3;
bool on=LOW;
bool off=HIGH;
void setup() {
rtc.begin();
Serial.begin(9600);
pinMode(relay,OUTPUT);
digitalWrite(relay,off);
rtc.setDOW(TUESDAY);
rtc.setTime(11,41,0);
rtc.setDate(20,2,2024);
}
void loop() {
}