Waveshare board definitions for ESP Board Manager
English | 简体中文
This board pack describes Waveshare hardware using Board Manager YAML files and board-specific setup code. It follows the component-pack workflow in demo_boards, with Waveshare definitions, bilingual documentation, and generation/build checks.
|
ESP32-S3-Touch-AMOLED-1.75C Board definition · Product documentation |
|
ESP32-S3-Touch-AMOLED-1.8 Board definition · Product documentation |
|
ESP32-S3-Touch-AMOLED-2.16 Board definition · Product documentation |
|
ESP32-S3-Touch-LCD-7 Board definition · Product documentation |
Device and peripheral definitions
The table lists definitions present in this repository. Peripheral declarations
such as spi_sd describe a bus; they do not imply a complete storage application.
| Board | Chip | Device definitions | Peripheral definitions |
|---|---|---|---|
esp32_s3_touch_amoled_1_75c |
ESP32-S3 | axp2101_power_manager, audio_dac, audio_adc, display_lcd, lcd_touch |
i2c_master, i2s_audio_out, i2s_audio_in, gpio_pa_control, spi_display |
esp32_s3_touch_amoled_1_8 |
ESP32-S3 | gpio_expander, axp2101_power_manager, audio_dac, audio_adc, display_lcd, lcd_touch, fs_sdcard |
i2c_master, i2s_audio_out, i2s_audio_in, gpio_pa_control, spi_display |
esp32_s3_touch_amoled_2_16 |
ESP32-S3 | axp2101_power_manager, audio_dac, audio_adc, display_lcd, lcd_touch, fs_sdcard |
i2c_master, i2s_audio_out, i2s_audio_in, gpio_pa_control, spi_display |
esp32_s3_touch_lcd_7 |
ESP32-S3 | display_lcd, lcd_touch |
i2c_master, uart_rs485, uart_external, adc_sensor, spi_sd |
Definitions live under boards/<full_model>/. The three AMOLED profiles come
from Espressif Brookesia; see board revisions and migration notes.
CI validates generation and compilation; physical operation requires board testing.
Activate ESP-IDF first. For a local checkout, clone this pack into an existing ESP-IDF application's component directory:
mkdir -p components
git clone https://github.com/waveshareteam/waveshare_boards.git components/waveshare_boards
python -m pip install esp-bmgr-assist==0.8.3
idf.py set-target esp32s3
idf.py bmgr -l
idf.py bmgr -b esp32_s3_touch_lcd_7
idf.py buildUse the Component Manager version from the active IDF environment; the tested versions for each IDF line are listed in the CI guide.
set-target resolves the pack dependencies before discovery. In an already
configured ESP32-S3 application, use idf.py reconfigure instead to preserve
its configuration.
Keep the local directory name waveshare_boards: ESP-IDF uses the directory name as
the component name. The pack declares espressif/esp_board_manager as a public
dependency. Applications can include esp_board_manager.h and initialize the
selected board using esp_board_manager_init().
Published versions can be installed from the registry:
idf.py add-dependency "waveshare/waveshare_boards"
idf.py reconfigure
idf.py bmgr -lFind available versions in the Component Registry.
boards/<full_model>/ Board metadata, peripherals, devices, and setup code
include/ Framework-independent AMOLED brightness helper
idf_component.yml Component metadata and managed dependencies
CMakeLists.txt Board-pack component registration
ci/test_app/ Board Manager integration compile test
ci/scripts/ Discovery, change routing, and validation tests
ci/versions.json Exact ESP-IDF and Python tooling versions
scripts/ Generated board catalog maintenance
docs/ Board revisions, CI, and registry publication guides
.github/ Workflows and contribution templates
The integration test is maintained under ci/; this repository currently has
no first-party application examples, Arduino sketches, or delivery firmware.
python scripts/update_supported_boards_table.py
python ci/scripts/board_pack.py check
python -m unittest discover -s ci/scripts -p 'test_*.py' -vUse one boards/ container and keep the chip prefix in each model name. Do not
add another chip/category directory: the layout must fit Board Manager scanning
from an application's components/ root. Each model directory must match its
unique board value. The catalog is regenerated from the definitions.
- Board organization, hardware revisions, and migration
- AMOLED brightness control
- CI coverage and local validation
- Registry credentials and publication
- Contributing
- Support
- ESP Board Manager documentation
Apache License 2.0, with imported files retaining their original SPDX notices, including CC0-1.0. See source attribution.