Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
#include

void setup(){
Serial.begin(9600);
while(!Serial){
;
}
Serial.println(PCF8563_RTC.getEpoch()); //Print RTC's epoch time
}

void loop(){
}
```