Reputation: 21
I have a Nano RP2040 Connect with Micropython on it. I need to connect it to WiFi. Micropython documentation says I need to import the "network" module, but when I try importing it, I get the no module named 'network'
error. I assume the module is only for ESP32 & ESP8266 boards. If anyone has connected to WiFi with a Nano RP2040 Connect on Micropython, please help me out.
P.S.: I have tried CircuitPython, and it worked great, but I need to run a Tensorflow Lite model on my RP2040, and CircuitPython does not have a library for running TFLite, unlike Micropython.
Upvotes: 2
Views: 480
Reputation: 5
you can get all available modules with (untested yet from me, but can help maybe)
help(modules)
also this for Wifi could help you: Raspberry Pi Pico W: Sensor-Daten-Logging übers Netzwerk
Upvotes: 0