Get started with MicroPython
Micropython help ()
Digi XBee® 3 802.15.4 RF Module User Guide
50
You can now type MicroPython commands at the
>>>
prompt.
Micropython help ()
When you type the
help()
command at the prompt, it provides a link to online help, control commands
and also usage examples.
>>> help()
Welcome to MicroPython!
For online docs please visit http://docs.micropython.org/.
Control commands:
CTRL-A
-- on a blank line, enter raw REPL mode
CTRL-B
-- on a blank line, enter normal REPL mode
CTRL-C
-- interrupt a running program
CTRL-D
-- on a blank line, reset the REPL
CTRL-E
-- on a blank line, enter paste mode
CTRL-F
-- on a blank line, enter flash upload mode
For further help on a specific object, type help(obj)
For a list of available modules, type help('modules')
-------------------------------------------------------
------------------------------------------------------
When you type
help('modules')
at the prompt, it displays all available Micropython modules.
------------------------------------------------------
>>> help('modules')
__main__
io
time
uos
array
json
ubinascii
ustruct
binascii
machine
uerrno
utime