Page 1 of 1

Setting static ip on raspberry pi pico W

Posted: Fri Jul 22, 2022 6:48 pm
by Nardo
Hello,
How to use a static ip on raspberry pi pico W ... any help, thank you

Re: Setting static ip on raspberry pi pico W

Posted: Fri Jul 22, 2022 7:01 pm
by davef
On the ESP32:

Code: Select all

 
sta_if.active(True)
sta_if.ifconfig((your_static_IP, '255.255.255.0', your gateway, '8.8.8.8'))

then connect

Re: Setting static ip on raspberry pi pico W

Posted: Sat Jul 23, 2022 3:01 pm
by Nardo
Thank you :)