I'm using the RTClib with a DS3231 on a Arduino Nano. Is there a way to just update the time (hour, min, sec) on the RTC without having to as well update everything else such as the year, month, day ?
It appears the only way to set the RTC time is with this command -
rtc.adjust(DateTime(year, month, day, hour, min, sec));
I'm building a retro style flip clock. Thanks in advance