ALARM with second
#201
-
Hello, We use PCF8563. PS : in documentation, the register address is 0x0B. BR |
Beta Was this translation helpful? Give feedback.
Answered by
Makuna
Nov 25, 2023
Replies: 1 comment 4 replies
-
The PCF8563 does not support an alarm with the accuracy of a second. Only the top of the minute is the finest quantum. Register 0x0B is Day_Alarm. The day of the month. You could implement it by cascading an Alarm and Timer. When the alarm triggers set a Timer with the seconds and when the timer triggers then do your final work. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Makuna
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The PCF8563 does not support an alarm with the accuracy of a second. Only the top of the minute is the finest quantum.
Register 0x0B is Day_Alarm. The day of the month.
You could implement it by cascading an Alarm and Timer. When the alarm triggers set a Timer with the seconds and when the timer triggers then do your final work.