Raspberry Pi Pico W
SKU: DEV-RPI-PICO-W ⢠Brand: Raspberry Pi ⢠Type: Microcontroller Board
Highlightsā
- Dual-core RP2040 @ 133 MHz
- 2.4 GHz Wi-Fi (Infineon CYW43439)
- 26x multi-function GPIO
- PIO state machines for custom protocols
- Works with MicroPythonA compact version of Python for microcontrollers like the ESP32 and Raspberry Pi Pico. It lets you script directly on embedded hardware., C/C++, and Rust
Specsā
| Field | Value |
|---|---|
| Model | Pico W |
| MCU | RP2040 dual-core Arm Cortex-M0+ @ 133 MHz |
| RAM / Flash | 264 KB SRAM / 2 MB QSPI Flash |
| Wireless | 2.4 GHz Wi-Fi (802.11n) |
| GPIO | 26 pins (I²C Inter-Integrated Circuit - a two-wire communication protocol (SDA, SCL) for sensors and peripherals. , SPI, UARTUniversal Asynchronous Receiver-Transmitter - a simple serial communication interface between microcontrollers and computers. , PWMPulse Width Modulation - controls average power by switching rapidly. The duty cycle determines the effective output. , ADCAnalog-to-Digital Converter - converts analog voltages into digital values that microcontrollers can read. ) |
| USB | Micro-USB (device only) |
| Supply Voltage | 5 V USB or 1.8-5.5 V VSYS |
| Dimensions | 51 x 21 mm |
| Certifications | CE, FCC, RoHS |
| HS Code | 8471500000 |
Pinout Diagramā
Pinout image courtesy of the Raspberry Pi Foundation. Licensed under CC BY-ND 4.0. Source
Getting Startedā
# MicroPython blink example
from machine import Pin, sleep
led = Pin("LED", Pin.OUT)
while True:
led.toggle()
sleep(0.5)