Search found 6 matches

by Frenk.98K
Wed Jul 27, 2022 3:59 pm
Forum: Programs, Libraries and Tools
Topic: Esp8266 Web Server
Replies: 10
Views: 46444

Re: Esp8266 Web Server

Roberthh wrote:
Wed Jul 27, 2022 1:27 pm
There was once a Python lib which uses a serially attached WIFi device. Traces of that must be in the Forum.
Also thank you, I'll try to pull on this thread to see what I'll find!
by Frenk.98K
Wed Jul 27, 2022 3:55 pm
Forum: Programs, Libraries and Tools
Topic: Esp8266 Web Server
Replies: 10
Views: 46444

Re: Esp8266 Web Server

Ok so if I'm understanding this correctly, the esp8266 in the picture it's actually it's own thing? Like I can connect with some serial to USB and put code in that through my computer? And so in this case it would then become the wifi module doing it's own wifi thing and then exchanging data and com...
by Frenk.98K
Wed Jul 27, 2022 12:31 pm
Forum: Programs, Libraries and Tools
Topic: Esp8266 Web Server
Replies: 10
Views: 46444

Re: Esp8266 Web Server

Yes, but with the power of gpio pins, I've added a esp8266 chip... Picture below, only imagine it's a rp2040-zero on port 0 and 1 instead of a pico There must be a way to use WiFi and the network library if these esp boards exist and all say are compatible with pi and arduino, right? 3q5l5e4jhnf61.p...
by Frenk.98K
Wed Jul 27, 2022 11:24 am
Forum: Programs, Libraries and Tools
Topic: Esp8266 Web Server
Replies: 10
Views: 46444

Re: Esp8266 Web Server

Hi,
Doesn't work means I get the following error:

Code: Select all

ImportError: no module named 'network'
And the same for all the other libraries mentioned...
It's not the esp8266 module the problem, but rather my rp2040-zero not having the libraries that i should need to then interface with the WiFi chip.
by Frenk.98K
Tue Jul 26, 2022 11:26 pm
Forum: Programs, Libraries and Tools
Topic: Esp8266 Web Server
Replies: 10
Views: 46444

Esp8266 Web Server

Hi everyone, I have a rp2040-zero connected to a esp8266 wifi chip. I want to turn it into a web server to activate a switch from the webpage and i actually found a few examples lying around... The main problem starts at the imports, as with every example i try to implement, i always get the same re...
by Frenk.98K
Thu May 05, 2022 8:34 pm
Forum: Raspberry Pi microcontroller boards
Topic: send data to RP2040 through USB
Replies: 1
Views: 2087

send data to RP2040 through USB

Hi, i'm trying to connect my RP2040-Zero board to my PC through the normal USB and talk with a companion JavaFX application. JavaFX side I think I should to connect to the port "COM3" with 9600 "baud" and send the data i need there. The first problem is that I haven't found anything recent or useful...