Commit cd6862f7 authored by Marcel Stör's avatar Marcel Stör
Browse files

Fix list format in rtctime docs

parent 369a1070
...@@ -24,6 +24,7 @@ This is a companion module to the [rtcmem](rtcmem.md) and [SNTP](sntp.md) module ...@@ -24,6 +24,7 @@ This is a companion module to the [rtcmem](rtcmem.md) and [SNTP](sntp.md) module
## rtctime.dsleep() ## rtctime.dsleep()
Puts the ESP8266 into deep sleep mode, like [`node.dsleep()`](node.md#nodedsleep). It differs from [`node.dsleep()`](node.md#nodedsleep) in the following ways: Puts the ESP8266 into deep sleep mode, like [`node.dsleep()`](node.md#nodedsleep). It differs from [`node.dsleep()`](node.md#nodedsleep) in the following ways:
- Time is kept across the deep sleep. I.e. [`rtctime.get()`](#rtctimeget) will keep working (provided time was available before the sleep). - Time is kept across the deep sleep. I.e. [`rtctime.get()`](#rtctimeget) will keep working (provided time was available before the sleep).
- This call never returns. The module is put to sleep immediately. This is both to support accurate time keeping and to reduce power consumption. - This call never returns. The module is put to sleep immediately. This is both to support accurate time keeping and to reduce power consumption.
- The time slept will generally be considerably more accurate than with [`node.dsleep()`](node.md#nodedsleep). - The time slept will generally be considerably more accurate than with [`node.dsleep()`](node.md#nodedsleep).
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment