openmv/scripts/examples/02-Board-Control/rtc.py

13 lines
206 B
Python

# RTC Example
#
# This example shows how to use the RTC.
import time
from pyb import RTC
rtc = RTC()
rtc.datetime((2013, 7, 9, 2, 0, 0, 0, 0))
while (True):
print(rtc.datetime())
time.sleep(1000)