diff options
author | danicampora <daniel@wipy.io> | 2015-10-23 23:29:43 +0200 |
---|---|---|
committer | danicampora <daniel@wipy.io> | 2015-10-25 21:31:42 +0100 |
commit | 359a8aa760748b0e4b1240bcabdfa9d8b49db93f (patch) | |
tree | 4b630c61b3f9f6f2812fc729388b0068508235d8 | |
parent | a3a33db40921494901b18f535104c98dd7a7216a (diff) | |
download | micropython-359a8aa760748b0e4b1240bcabdfa9d8b49db93f.tar.gz micropython-359a8aa760748b0e4b1240bcabdfa9d8b49db93f.zip |
docs/wipy: Fix error in WLAN quickref.
-rw-r--r-- | docs/wipy/quickref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/wipy/quickref.rst b/docs/wipy/quickref.rst index aa679542ea..9f4a55070d 100644 --- a/docs/wipy/quickref.rst +++ b/docs/wipy/quickref.rst @@ -193,7 +193,7 @@ See :ref:`network.WLAN <network.WLAN>` and :mod:`machine`. :: pass print(wifi.ifconfig()) # enable wake on WLAN - wifi.irq(wake=machine.SLEEP) + wifi.irq(trigger=WLAN.ANY_EVENT, wake=machine.SLEEP) # go to sleep machine.sleep() # now, connect to the FTP or the Telnet server and the WiPy will wake-up |