diff options
author | ketograph <ketograph@github.com> | 2019-12-14 16:56:14 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-12-17 12:19:27 +1100 |
commit | 04e7aa056316d7b4400b508caefe26c6b75384f8 (patch) | |
tree | 30c49be09541e479cc495ed720513cd4308d653f /docs/esp8266 | |
parent | f3f7eb48da8bbd108e18103a45f9898846d6eb48 (diff) | |
download | micropython-04e7aa056316d7b4400b508caefe26c6b75384f8.tar.gz micropython-04e7aa056316d7b4400b508caefe26c6b75384f8.zip |
docs/esp8266/quickref: Add note that machine.RTC is not fully supported.
See issues #3220 and #3710.
Diffstat (limited to 'docs/esp8266')
-rw-r--r-- | docs/esp8266/quickref.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/esp8266/quickref.rst b/docs/esp8266/quickref.rst index a197665043..9c7db3205a 100644 --- a/docs/esp8266/quickref.rst +++ b/docs/esp8266/quickref.rst @@ -249,6 +249,10 @@ See :ref:`machine.RTC <machine.RTC>` :: ntptime.settime() # set the rtc datetime from the remote server rtc.datetime() # get the date and time in UTC +.. note:: Not all methods are implemented: `RTC.now()`, `RTC.irq(handler=*) <RTC.irq>` + (using a custom handler), `RTC.init()` and `RTC.deinit()` are + currently not supported. + Deep-sleep mode --------------- |