mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
9 lines
139 B
Python
9 lines
139 B
Python
import pyb
|
|
from pyb import RTC
|
|
|
|
rtc = RTC()
|
|
print(rtc)
|
|
rtc.datetime((2014, 1, 1, 1, 0, 0, 0, 0))
|
|
pyb.delay(1000)
|
|
print(rtc.datetime()[:7])
|