- Ctrl-C cancels any input, or interrupts the currently running code.
- Ctrl-D on a blank line will do a soft reset.
- Ctrl-E special paste mode.
- Ctrl-X to exit.
help('modules')
import webrepl
import webrepl_setup
dir(webrepl_setup)
f = open('myfile.txt', 'w')
f.write('Hola MicroPython')
f = open('myfile.txt')
f.close()
import os
os.mkdir('ro')
os.listdir()
import network
ap_if = network.WLAN(network.AP_IF)
ap_if.active(True)
ap_if.ifconfig()