MicroPython_ESP32_psRAM_LoBo icon indicating copy to clipboard operation
MicroPython_ESP32_psRAM_LoBo copied to clipboard

esp32 and esp module does'nt work

Open AkhileshThorat opened this issue 6 years ago • 1 comments

import machine import esp Traceback (most recent call last): File "", line 1, in ImportError: no module named 'esp' import esp32 Traceback (most recent call last): File "", line 1, in ImportError: no module named 'esp32'

AkhileshThorat avatar Feb 11 '19 14:02 AkhileshThorat

Quite normal: the modules you are looking for are part of the mainline port and there is, as far as I can tell, no esp(32) module in this port... To see what modules are "bundled" in the port, issue a help("modules") in the repl.

fstengel avatar Feb 26 '19 17:02 fstengel