# StockDesk **Repository Path**: rain1012/stock-desk ## Basic Information - **Project Name**: StockDesk - **Description**: 桌面股票终端 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-03 - **Last Updated**: 2026-07-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # StockPet Desktop stock terminal based on ESP32-S3 N16R8, a 3.5-inch 480x320 8080 parallel capacitive touch display, ESP-IDF 5.x, and LVGL 9. ## Repository Layout ```text docs/ Product and technical documents firmware/ ESP-IDF firmware project hardware/ Board notes, pin maps, schematics ui/ UI references and interaction drafts backend/ Optional API/mock server notes ``` ## Firmware Quick Start ```powershell cd firmware idf.py set-target esp32s3 idf.py build idf.py -p COMx flash monitor ``` Before flashing to real hardware, update: - `firmware/components/common/include/stockpet_config.h` - LCD controller init sequence in `firmware/components/display` - touch controller driver in `firmware/components/touch` - stock API endpoint and parser in `firmware/components/api` ## Current Status This is the V1 firmware skeleton. Hardware-specific LCD/touch code is isolated behind component APIs so the actual board pin map and controller IC can be added without changing UI or business logic.