We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0cf72d + b42ae4f commit 30fba6cCopy full SHA for 30fba6c
adafruit_pcf8523.py
@@ -113,6 +113,19 @@ class PCF8523:
113
datetime_register = i2c_bcd_datetime.BCDDateTimeRegister(0x03, False, 0)
114
"""Current date and time."""
115
116
+ clockout_frequency = i2c_bits.RWBits(3, 0x0F, 3)
117
+ """Clock output frequencies generated. Default is 32.768kHz.
118
+ Possible values are as shown (selection value - frequency).
119
+ 000 - 32.768khz
120
+ 001 - 16.384khz
121
+ 010 - 8.192kHz
122
+ 011 - 4.096kHz
123
+ 100 - 1.024kHz
124
+ 101 - 0.032kHz (32Hz)
125
+ 110 - 0.001kHz (1Hz)
126
+ 111 - Disabled
127
+ """
128
+
129
# The False means that day and weekday share a register. The 0 is that the
130
# first day of the week is value 0 and not 1.
131
alarm = i2c_bcd_alarm.BCDAlarmTimeRegister(
0 commit comments