Main Content

Quickstart IoT - Raspberry Pi Pico RP2040 with WiFi

Connect your Raspberry Pi Pico CircuitPython project to the internet by adding an AirLift breakout board. The Adafruit AirLift is a breakout board that lets you use the ESP32 as a WiFi co-processor for a Pico.

In this guide, you will wire up a Pico to an AirLift breakout and connect to the internet. Then, you’ll learn how to fetch JSON and raw text data from the internet. Finally, an example is included for connecting your Pico to Adafruit IO, the Adafruit internet-of-things service, so you can interact with and visualize your project’s data.

Why use AirLift?
Having WiFi managed by a separate chip means your code is simpler, you don’t have to cache socket data, or compile in & debug an SSL library. With AirLift, you can send basic but powerful socket-based commands over 8MHz SPI for high speed data transfer. The ESP32 can handle all the heavy lifting of connecting to a WiFi network and transferring data from a site, and using the latest TLS/SSL encryption (it has root certificates pre-burned in).”

Link to article