Comments on: Raspberry Pi Pico W: Getting Started with Wi-Fi (MicroPython) https://randomnerdtutorials.com/raspberry-pi-pico-w-wi-fi-micropython/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Mon, 03 Feb 2025 22:52:04 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: Hubert https://randomnerdtutorials.com/raspberry-pi-pico-w-wi-fi-micropython/#comment-1005112 Mon, 03 Feb 2025 22:52:04 +0000 https://randomnerdtutorials.com/?p=162278#comment-1005112 Hello,
nice explained, thank you.
Anyway, I need to send(and if possible receive) data to a steady turning
‘wheel’. On the wheel are two servos(PWM)( and sensors) …and a Pico W ?
How can I send(receive) data to(from) this Pico W from a Raspberry Pi 3B.
You showed how to connect, thanks, but can I send request ?
Thanks in advance

]]>
By: Emilio https://randomnerdtutorials.com/raspberry-pi-pico-w-wi-fi-micropython/#comment-970203 Thu, 10 Oct 2024 15:06:46 +0000 https://randomnerdtutorials.com/?p=162278#comment-970203 As always, thanks for sharing!!

I’d add the following lines to make the WiFi connection even more stable for a Pico W board:

import rp2
import time

Init Wi-Fi Interface

wlan = network.WLAN(network.STA_IF)
wlan.active(True)
time.sleep_ms(500)
rp2.country(‘ES’) # ES for Spain
wlan.config(pm = 0xa11140) # turn off power savings
wlan.connect(ssid, password)

time.sleep(3)

Best regards.

]]>