├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── check-arduino.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LibraryPatches ├── Ethernet │ └── src │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── Ethernet2 │ └── src │ │ ├── Ethernet2.cpp │ │ ├── Ethernet2.h │ │ ├── EthernetUdp2.cpp │ │ └── EthernetUdp2.h ├── Ethernet3 │ └── src │ │ ├── Ethernet3.cpp │ │ └── Ethernet3.h ├── EthernetLarge │ └── src │ │ ├── EthernetLarge.cpp │ │ ├── EthernetLarge.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── UIPEthernet-2.0.9 │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h ├── UIPEthernet │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h └── esp32 │ └── cores │ └── esp32 │ └── Server.h ├── README.md ├── changelog.md ├── examples ├── Alarm │ ├── RP2040_RTC_Alarm │ │ ├── RP2040_RTC_Alarm.ino │ │ └── defines.h │ ├── RP2040_RTC_Alarm_Ethernet │ │ ├── RP2040_RTC_Alarm_Ethernet.ino │ │ └── defines.h │ ├── RP2040_RTC_Alarm_RP2040W │ │ ├── RP2040_RTC_Alarm_RP2040W.ino │ │ └── defines.h │ └── RP2040_RTC_Alarm_WiFiNINA │ │ ├── RP2040_RTC_Alarm_WiFiNINA.ino │ │ └── defines.h └── Time │ ├── RP2040_RTC_Time │ ├── RP2040_RTC_Time.ino │ └── defines.h │ ├── RP2040_RTC_Time_Ethernet │ ├── RP2040_RTC_Time_Ethernet.ino │ └── defines.h │ ├── RP2040_RTC_Time_RP2040W │ ├── RP2040_RTC_Time_RP2040W.ino │ └── defines.h │ └── RP2040_RTC_Time_WiFiNINA │ ├── RP2040_RTC_Time_WiFiNINA.ino │ └── defines.h ├── keywords.txt ├── library.json ├── library.properties ├── platformio └── platformio.ini ├── src ├── DateTime_Generic.h └── RP2040_RTC.h └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LICENSE -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/EthernetLarge/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/esp32/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/LibraryPatches/esp32/cores/esp32/Server.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm/RP2040_RTC_Alarm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm/RP2040_RTC_Alarm.ino -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm/defines.h -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_Ethernet/RP2040_RTC_Alarm_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_Ethernet/RP2040_RTC_Alarm_Ethernet.ino -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_Ethernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_Ethernet/defines.h -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_RP2040W/RP2040_RTC_Alarm_RP2040W.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_RP2040W/RP2040_RTC_Alarm_RP2040W.ino -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_RP2040W/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_RP2040W/defines.h -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_WiFiNINA/RP2040_RTC_Alarm_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_WiFiNINA/RP2040_RTC_Alarm_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/Alarm/RP2040_RTC_Alarm_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Alarm/RP2040_RTC_Alarm_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time/RP2040_RTC_Time.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time/RP2040_RTC_Time.ino -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time/defines.h -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_Ethernet/RP2040_RTC_Time_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_Ethernet/RP2040_RTC_Time_Ethernet.ino -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_Ethernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_Ethernet/defines.h -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_RP2040W/RP2040_RTC_Time_RP2040W.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_RP2040W/RP2040_RTC_Time_RP2040W.ino -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_RP2040W/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_RP2040W/defines.h -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_WiFiNINA/RP2040_RTC_Time_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_WiFiNINA/RP2040_RTC_Time_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/Time/RP2040_RTC_Time_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/examples/Time/RP2040_RTC_Time_WiFiNINA/defines.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/library.properties -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/DateTime_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/src/DateTime_Generic.h -------------------------------------------------------------------------------- /src/RP2040_RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/src/RP2040_RTC.h -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/RP2040_RTC/HEAD/utils/restyle.sh --------------------------------------------------------------------------------