Arduino Uno R3 Compatible
ATmega328P classic board — the robotics learning standard
IoT Kits
In StockMCU-RPI-PICO-W · Stock: 180
The Raspberry Pi Pico W packs the RP2040 dual-core Arm Cortex-M0+ with CYW43439 WiFi into a breadboard-friendly form factor. Ideal for MicroPython robotics and wireless sensor nodes.
3 clicks: Buy Now → Checkout → Place Order
RP2040 dual-core with onboard WiFi — tiny & powerful
High-res visual shown left · QA bench-tested before dispatch.
| Operating Voltage | 3.3V |
|---|---|
| GPIO Pins | 26 |
| Protocols | SPI, I2C, UART, PIO |
| Flash | 2MB |
| SRAM | 264KB |
| Clock | 133MHz |
| WiFi | 802.11n |
| Dimensions | 51 × 21 mm |
| Weight | 4g |
Wiring guide: power rails first (VCC/GND), then bus (I2C/SPI), then interrupt/PWM lines.
// Arduino-Pico core
#include <WiFi.h>
void setup() {
Serial.begin(115200);
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(200);
digitalWrite(LED_BUILTIN, LOW);
delay(200);
}
import network
import machine
import time
led = machine.Pin('LED', machine.Pin.OUT)
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
while True:
led.toggle()
time.sleep(0.2)
// Arduino-Pico core
#include <WiFi.h>
void setup() {
Serial.begin(115200);
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(200);
digitalWrite(LED_BUILTIN, LOW);
delay(200);
}
Technical datasheet for MCU-RPI-PICO-W.
Real maker feedback for Raspberry Pi Pico W.
Share a wiring tip, build note, or bench-test result to help the next maker.