You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
Inc | 2 years ago | |
Src | 2 years ago | |
readme.md | 2 years ago |
readme.md
SX127x
Introduction
This library implements support for the PCF8523 real-time clock. It is written for the STM32 HAL using blocking I2C calls.
Usage
Clone this repository, or add it as a submodule, to your STM32 project under the Drivers/ directory.
Example:
#include "pcf8523.h"
pcf8523_t pcf8523;
time_t now;
pcf8523_init(&pcf8523, &hi2c);
now = pcf8523_now(&pcf8523);