summaryrefslogtreecommitdiffstatshomepage
path: root/tests/pyb/rtc.py
blob: ac716b27fc5eb0e69733309393f704af4b9ae0c3 (plain) (blame)
1
2
3
4
5
6
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])