File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: MIT
5
5
6
6
"""
7
- `adafruit_pcf8563 ` - PCF8563 Real Time Clock module
7
+ `pcf8563 ` - PCF8563 Real Time Clock module
8
8
====================================================
9
9
10
10
This library supports the use of the PCF8563-based RTC in CircuitPython. It
@@ -36,8 +36,7 @@ class is inherited by the chip-specific subclasses.
36
36
37
37
#. Milliseconds are not supported by this RTC.
38
38
#. The alarm does not support seconds. It will always fire on full minutes.
39
- #. This RTC has a single timer. The class Timer implements the
40
- interface to timer-specfic registers.
39
+ #. This RTC has a single timer. The class Timer implements the interface to timer-specfic registers.
41
40
#. The class Clock implements the configuration of the clkout-pin.
42
41
#. Datasheet: http://cache.nxp.com/documents/data_sheet/PCF8563.pdf
43
42
"""
Original file line number Diff line number Diff line change 24
24
# Uncomment the below if you use native CircuitPython modules such as
25
25
# digitalio, micropython and busio. List the modules you use. Without it, the
26
26
# autodoc module docs will fail to generate with a warning.
27
- # autodoc_mock_imports = ["adafruit_bus_device", "adafruit_register"]
27
+ autodoc_mock_imports = ["adafruit_bus_device" , "adafruit_register" ]
28
28
29
29
# Add any paths that contain templates here, relative to this directory.
30
30
templates_path = ["_templates" ]
You can’t perform that action at this time.
0 commit comments