From f6206876b7206535816e91edb7c2c111c0a57f41 Mon Sep 17 00:00:00 2001 From: Quitsoon <72099942+Quitsoon@users.noreply.github.com> Date: Tue, 11 Apr 2023 21:17:35 +0200 Subject: [PATCH] Update pico_rtc.py Just a little correction of the word "timer" instead of "alarm" for the last test. --- micropython/examples/pcf85063a/pico_rtc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/pcf85063a/pico_rtc.py b/micropython/examples/pcf85063a/pico_rtc.py index aff28af1..31678f32 100644 --- a/micropython/examples/pcf85063a/pico_rtc.py +++ b/micropython/examples/pcf85063a/pico_rtc.py @@ -85,7 +85,7 @@ print(" >", now) print() print("- clear timer flag") -rtc.clear_alarm_flag() +rtc.clear_timer_flag() print() print("tests complete")