Turn your Raspberry Pi Pico W into a portable, powerful Wi-Fi access point with this lightweight captive portal software. Serve web content/pages and display real-time connection info directly on the onboard Pimoroni screen. Log all the connection details for later debugging and use!
Whether you're testing networks, showcasing web projects, or exploring IoT, this tool gives you the flexibility to do it all. Itβs easily adaptable for various purposesβserve web applications, demo single-page apps (SPAs), or set up captive portals for network security testing.
[ Index ]
You can purchase a fully assembled Pico Portal XL, Pico Portal Mini, or a 3D-printed enclosure/case for your own build from Lambda Guru:
Note: The 3D print files are available on Lambda Guru for a small fee (the first time I've ever charged for models, see my free collection here). The enclosures/cases on Lambda Guru are specifically designed for the parts listed below.
Note: If you'd like to do your own custom build there are other alternative 3D printable cases out there on websites such as thingiverse. Be sure to show off a picture of your build by submitting a ticket here! Your images will likely be shared on places like the Lambda Guru website or this repository for the community to see!
To replicate the original Pico Portal devices found on Lambda Guru, you will need the following:
Pico Portal XL parts list:
Part | Link |
---|---|
Raspberry Pi Pico W | ThePiHut |
Pimoroni Pico Display Pack 2.0 | Pimoroni |
3D Printed Enclosure (XL) | Lambda Guru |
1600 mAh LiPo Battery | β |
LiPo SHIM | Pimoroni |
Pico Portal Mini parts list:
Part | Link |
---|---|
Raspberry Pi Pico W | ThePiHut |
Pimoroni Pico Display Pack | Pimoroni |
3D Printed Enclosure (Mini) | Lambda Guru |
600 mAh LiPo Battery | β |
Pico-UPS-B | Waveshare |
Note: This project can be ran standalone on a Raspberry Pi Pico W! Additional hardware is only required for the portable version.
[ Index ]
To connect your Raspberry Pi Pico W to your PC for firmware installation, follow these steps:
-
Make sure your Raspberry Pi Pico is not connected to any power source.
-
Hold down the BOOTSEL button on your Pico.
-
Connect the Pico to your computer using a Micro USB cable.
-
Release the BOOTSEL button. The device should appear on your computer as a USB Mass Storage Device.
Note: You only need to do this for Firmware installation. After the firmware is installed, you can connect your Pico to your computer without holding the BOOTSEL button.
To install MicroPython on your Raspberry Pi Pico W after connecting to your computer, follow these steps:
-
Download the latest Pimoroni Pico W UF2 file "picow-vXX.YY.ZZ-pimoroni-micropython.uf2" from the official releases:
-
Connect your Raspberry Pi Pico W to your PC, see Connecting to PC.
-
Drag and drop the UF2 file onto the RPI-RP2 drive. This will program the MicroPython firmware onto your Pico.
-
Wait for a few seconds. The board will automatically reboot. Your Pico will now be running MicroPython.
[ Index ]
Note: This project uses Node.js. Make sure you have Node.js installed on your system before proceeding.
-
Install project dependencies:
npm install
-
Install Thonny IDE:
-
Open Thonny IDE and connect to your Raspberry Pi Pico W via USB.
-
Copy the contents from
src/
(this repo) to the root of your Raspberry Pi Pico W using the Thonny IDE.Note: Be sure the "src/modules/" is copied and that the folder exists.
-
Unplug your Raspberry Pi Pico W from your computer and connect it to a power source.
-
Your Raspberry Pi Pico W will now boot up and display the Pico Portal interface on the Pimoroni screen.
You can customize the Pico Portal settings by editing the src/options.py
file. The settings are as follows:
{
"wifi_ssid": "WiFi",
"wifi_password": "",
"wifi_domain": "setup.local",
"display_type": "DISPLAY_PICO_DISPLAY"
"enable_timestamps": False,
"led_brightness": 0.25
}
Setting | Description |
---|---|
wifi_ssid |
The SSID of the Wi-Fi network you want to create. |
wifi_password |
The password for the Wi-Fi network you want to create. Make sure your password is 8+ characters. Also cycle the power on and off if you change the password to fully update it. Leave blank for an open network (default). |
wifi_domain |
The domain name for the captive portal displayed on the connecting device. |
display_type |
The type of display you are using. Options are DISPLAY_PICO_DISPLAY (default) or DISPLAY_PICO_DISPLAY_2 . If you don't have a screen, you can use either. |
enable_timestamps |
Enable or disable timestamps for the log. |
led_brightness |
The brightness of the Pico Display LED, as a range from 0.0 to 1.0. Default is 0.25 (25%), 0 for off. |
The Pico Portal has four buttons that can be used to interact with the device. The button functions are as follows:
Button | Function |
---|---|
A |
Scroll up one line of the displayed log. Hold to scroll up faster. |
X |
Scroll down one line of the displayed log. Hold to scroll down faster. |
B |
Scroll to the top of the page of the displayed log. |
Y |
Scroll to the bottom of the page of the displayed log. |
Button layout:
Pico Display Pico Display 2.0
|=============| |=====================|
| | | (B) (A) |
| (B) (A) | | ------------------- |
| ----------- | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| ----------- | | | | |
| (Y) (X) | | ------------------- |
| (LED) | | (Y) (LED) (X) |
|=============| |=====================|
[ Index ]
Make sure the following are installed on your system before you begin:
Using a terminal, follow these steps to set up the development environment:
-
Fork and clone the repository:
git clone
-
Install project dependencies. This will install the required Node.js packages for running
setup.ts
which will download the required asset files to thesrc/modules
folder. Run in the root of the project:npm install
-
Run the python setup script. This will download the files for linting (flake8), formatting (black), and pre-commit hooks (pre-commit). Basically everything we need for enforcing code quality.
# Install the required packages npm run lint:install # Install the pre-commit hooks pre-commit install # Update the pre-commit hooks pre-commit autoupdate
-
Program, test, and debug the project using the Thonny IDE.
-
Commit (pre commit hooks should run and verify the code) and push your changes.
-
Create a pull request here.
Thank you for contributing!
Script | Description |
---|---|
format |
Formats the Python code using Black. |
lint |
Lints the Python code using Flake8. |
lint:install |
Installs the required Python packages for linting and formatting. |
postinstall |
Downloads the required asset files to the src/modules folder. |
[ Index ]
This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) License. See the LICENSE.md file for the pertaining license text.
SPDX-License-Identifier: CC-BY-NC-4.0
Basically, everything is free for you to use personally. I just ask that you don't sell this software. If you want to use it for commercial purposes, please contact me first and we can work something out.
Feel free to build this project for yourself, your friends, or your family etc! You can also purchase this device from me directly fully assembled with a case here.
Thank you for your understanding!
[ Index ]
Thank you for all of your support, I spent a long time working on this project and plan to support it long term. Really hoping the community joins in and helps me improve it from here. It's important to me that this project stays accessible to everyone, so please keep this software free and open source. If you have any questions, please let me know by opening an issue here.
Type | Info |
---|---|
[email protected] | |
https://www.buymeacoffee.com/codytolene | |
bc1qfx3lvspkj0q077u3gnrnxqkqwyvcku2nml86wmudy7yf2u8edmqq0a5vnt |
Fin. Happy programming friend!
Cody Tolene