Naguissa / uRTCLib

Really tiny library to basic RTC functionality on Arduino. DS1307, DS3231 and DS3232 RTCs are supported.
https://www.foroelectro.net/librerias-arduino-ide-f29/rtclib-arduino-libreria-simple-y-eficaz-para-rtc-y-t95.html
GNU Lesser General Public License v3.0
87 stars 24 forks source link

Day of week ISO 8601 #22

Closed BogdanovAleksei closed 3 years ago

BogdanovAleksei commented 3 years ago

For European countries, the day of the week does not comply with ISO 8601

Naguissa commented 3 years ago

I've checked datasheets and there's no requirement, but on all datasheets the example included is Sun=1. Also, I've seen other libraries using the same encoding, so changing it will:

I'm spanish and we also use Mon..Sun, but I prefer to stitch to the majority in this case.

Cheers!