Get started with MicroPython
Micropython help ()
Digi XBee® 3 802.15.4 RF Module User Guide
51
builtins
micropython
uhashlib
xbee
errno
os
uio
gc
struct
ujson
hashlib
sys
umachine
Plus any modules on the filesystem
------------------------------------------------------
When you import a module and type
help()
with the module as the object, you can query all the
functions that the object supports.
------------------------------------------------------
>>> import sys
>>> help(sys)
object <module 'sys'> is of type module
__name__ -- sys
path -- ['', '/flash', '/flash/lib']
argv -- ['']
version -- 3.4.0
version_info -- (3, 4, 0)
implementation -- ('micropython', (1, 10, 0))
platform -- xbee3-802.15.4
byteorder -- little
maxsize -- 2147483647
exit -- <function>
stdin -- <io.FileIO 0>
stdout -- <io.FileIO 1>
stderr -- <io.FileIO 2>
modules -- {}
print_exception -- <function>
-------------------------------------------------------