16 lines
418 B
Python
16 lines
418 B
Python
"""PyPCF8523 - PCF8523 Real Time Clock Driver for Python 3.14+
|
|
|
|
This library provides a Python interface for the PCF8523 RTC chip on Raspberry Pi.
|
|
Converted from Adafruit's CircuitPython library for standard Python.
|
|
|
|
Author: Converted for Python 3.14
|
|
Original: Philip R. Moyer and Radomir Dopieralski for Adafruit Industries
|
|
License: MIT
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
from .pcf8523 import PCF8523
|
|
|
|
__all__ = ["PCF8523"]
|