-
Notifications
You must be signed in to change notification settings - Fork 58
Closed as not planned
Labels
conclusion: duplicateHas already been submittedHas already been submittedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement
Description
This is a great library. Not really an issue, more of a feature request.
Is it possible to add time-keeping via the RTC?
For example:
void setRtcTime(uint32_t time){
// not sure if this is the best way to make sure the RTC is up and running
if (!rtc.isConfigured()) {
attachInterruptWakeup(RTC_ALARM_WAKEUP, NULL, 0);
}
rtc.setEpoch(time);
}
uint32_t getRtcTime(void){
return rtc.getEpoch();
}
qbsho
Metadata
Metadata
Assignees
Labels
conclusion: duplicateHas already been submittedHas already been submittedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement