# pico_dm_qd3503728_hagl_effects **Repository Path**: embeddedboys/pico_dm_qd3503728_hagl_effects ## Basic Information - **Project Name**: pico_dm_qd3503728_hagl_effects - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-26 - **Last Updated**: 2025-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: hagl, Pico, GUI ## README # Pico DM QD3503728 HAGL effects HAGL old school demo effects for Pico DM QD3503728 ![demo0](./assets/IMG_0618_compressed.png)
![demo1](./assets/IMG_0619_compressed.png) ## Requirements - pico-sdk >= 2.1.1 - picotool >= 2.1.1 ## How to build ### 1. Clone and initialize the repository ```bash git clone https://github.com/embeddedboys/pico_dm_qd3503728_hagl_effects.git cd pico_dm_qd3503728_hagl_effects git submodule update --init ``` ### 2. Build for Raspberry Pi Pico (RP2040) ```bash mkdir build && cd build cmake .. -G Ninja ninja ``` ### 3. Build for Raspberry Pi Pico 2 (RP2350 ARM core) ```bash mkdir build-pico2 && cd build-pico2 cmake -DPICO_BOARD=pico2 .. -G Ninja ninja ``` ## Flash the target Flash the target using picotool: ```bash sudo picotool -fuvx pico_dm_qd3503728_hagl_effects.uf2 ``` Or you can using openocd by running under the build directory: ```bash ninja flash ```