Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facts-engineering/pcf8563_rtc
Arduino library for the P1AM-200 PCF8563 RTC chip.
https://github.com/facts-engineering/pcf8563_rtc
Last synced: about 17 hours ago
JSON representation
Arduino library for the P1AM-200 PCF8563 RTC chip.
- Host: GitHub
- URL: https://github.com/facts-engineering/pcf8563_rtc
- Owner: facts-engineering
- License: mit
- Created: 2023-11-27T21:33:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-27T21:38:52.000Z (about 1 year ago)
- Last Synced: 2024-11-06T23:04:11.523Z (about 2 months ago)
- Language: C++
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PCF8563 RTC Arduino Library
Arduino library for the P1AM-200 PCF8563 RTC chip.
Use the Arduino Library Manager to install.
## Example
Here is a simple example which shows the capabilities of the library
```cpp
#includevoid setup(){
Serial.begin(9600);
while(!Serial){
;
}
Serial.println(PCF8563_RTC.getEpoch()); //Print RTC's epoch time
}void loop(){
}
```