data(examples): complete ESP32 example library manifests with transitive deps (P2.4)
Auto-completed the library manifests for the 9 ESP32-family examples that use external libraries, so each declares its full dependency set (direct + transitive). Found genuinely-missing deps that the previous fields omitted: - esp32-dht22, c3-dht22: + Adafruit Unified Sensor - esp32-mpu6050, esp32-bmp280, esp32-oled, esp32-doom: + Adafruit BusIO - esp32cam-lcd-preview: add manifest [Adafruit GFX Library, Adafruit BusIO, Adafruit ILI9341] Each completed manifest was validated by compiling the example against ONLY its manifest (manifest-scoped resolution, no fallback). esp32-servo / c3-servo were already complete. This unblocks turning on scoped resolution for the gallery (P2.3): with complete manifests, scope picks the declared libs and excludes strays, and the P2.3-safety fallback covers any residual gap.
This commit is contained in:
parent
5feb4d54ea
commit
c671c9b21c
|
|
@ -7114,7 +7114,7 @@ void loop() {
|
||||||
id: 'esp32-dht22',
|
id: 'esp32-dht22',
|
||||||
title: 'ESP32: DHT22 Temperature & Humidity',
|
title: 'ESP32: DHT22 Temperature & Humidity',
|
||||||
description: 'Read temperature and humidity from a DHT22 sensor on GPIO4 of the ESP32.',
|
description: 'Read temperature and humidity from a DHT22 sensor on GPIO4 of the ESP32.',
|
||||||
libraries: ['DHT sensor library'],
|
libraries: ['DHT sensor library', 'Adafruit Unified Sensor'],
|
||||||
category: 'sensors',
|
category: 'sensors',
|
||||||
difficulty: 'beginner',
|
difficulty: 'beginner',
|
||||||
boardType: 'esp32',
|
boardType: 'esp32',
|
||||||
|
|
@ -7255,7 +7255,7 @@ void loop() {
|
||||||
title: 'ESP32: MPU-6050 Accelerometer',
|
title: 'ESP32: MPU-6050 Accelerometer',
|
||||||
description:
|
description:
|
||||||
'Read 3-axis acceleration and gyroscope data from an MPU-6050 over I2C (SDA=D21, SCL=D22).',
|
'Read 3-axis acceleration and gyroscope data from an MPU-6050 over I2C (SDA=D21, SCL=D22).',
|
||||||
libraries: ['Adafruit MPU6050', 'Adafruit Unified Sensor'],
|
libraries: ['Adafruit MPU6050', 'Adafruit Unified Sensor', 'Adafruit BusIO'],
|
||||||
category: 'sensors',
|
category: 'sensors',
|
||||||
difficulty: 'intermediate',
|
difficulty: 'intermediate',
|
||||||
boardType: 'esp32',
|
boardType: 'esp32',
|
||||||
|
|
@ -7546,7 +7546,7 @@ void loop() {
|
||||||
title: 'ESP32-C3: DHT22 Temperature & Humidity',
|
title: 'ESP32-C3: DHT22 Temperature & Humidity',
|
||||||
description:
|
description:
|
||||||
'Read temperature and humidity with a DHT22 sensor on GPIO3 of the ESP32-C3 RISC-V board.',
|
'Read temperature and humidity with a DHT22 sensor on GPIO3 of the ESP32-C3 RISC-V board.',
|
||||||
libraries: ['DHT sensor library'],
|
libraries: ['DHT sensor library', 'Adafruit Unified Sensor'],
|
||||||
category: 'sensors',
|
category: 'sensors',
|
||||||
difficulty: 'beginner',
|
difficulty: 'beginner',
|
||||||
boardType: 'esp32-c3',
|
boardType: 'esp32-c3',
|
||||||
|
|
@ -8297,7 +8297,7 @@ void loop() {
|
||||||
title: 'ESP32: BMP280 Weather Station',
|
title: 'ESP32: BMP280 Weather Station',
|
||||||
description:
|
description:
|
||||||
'Read temperature and pressure from a BMP280 barometric sensor over I2C (SDA=D21, SCL=D22).',
|
'Read temperature and pressure from a BMP280 barometric sensor over I2C (SDA=D21, SCL=D22).',
|
||||||
libraries: ['Adafruit BMP280 Library', 'Adafruit Unified Sensor'],
|
libraries: ['Adafruit BMP280 Library', 'Adafruit Unified Sensor', 'Adafruit BusIO'],
|
||||||
category: 'sensors',
|
category: 'sensors',
|
||||||
difficulty: 'intermediate',
|
difficulty: 'intermediate',
|
||||||
boardType: 'esp32',
|
boardType: 'esp32',
|
||||||
|
|
@ -8377,7 +8377,7 @@ void loop() {
|
||||||
id: 'esp32-oled',
|
id: 'esp32-oled',
|
||||||
title: 'ESP32: SSD1306 OLED Display',
|
title: 'ESP32: SSD1306 OLED Display',
|
||||||
description: 'Display text and graphics on a 128×64 SSD1306 OLED over I2C (SDA=D21, SCL=D22).',
|
description: 'Display text and graphics on a 128×64 SSD1306 OLED over I2C (SDA=D21, SCL=D22).',
|
||||||
libraries: ['Adafruit SSD1306', 'Adafruit GFX Library'],
|
libraries: ['Adafruit SSD1306', 'Adafruit GFX Library', 'Adafruit BusIO'],
|
||||||
category: 'displays',
|
category: 'displays',
|
||||||
difficulty: 'intermediate',
|
difficulty: 'intermediate',
|
||||||
boardType: 'esp32',
|
boardType: 'esp32',
|
||||||
|
|
@ -8881,6 +8881,7 @@ void loop() {
|
||||||
difficulty: 'intermediate',
|
difficulty: 'intermediate',
|
||||||
boardType: 'esp32-cam',
|
boardType: 'esp32-cam',
|
||||||
boardFilter: 'esp32-cam',
|
boardFilter: 'esp32-cam',
|
||||||
|
libraries: ['Adafruit GFX Library', 'Adafruit BusIO', 'Adafruit ILI9341'],
|
||||||
code: `// ESP32-CAM live webcam preview on ILI9341 320×240 TFT
|
code: `// ESP32-CAM live webcam preview on ILI9341 320×240 TFT
|
||||||
// Click "Camera" in the canvas header → grant permission → see your
|
// Click "Camera" in the canvas header → grant permission → see your
|
||||||
// face on the TFT.
|
// face on the TFT.
|
||||||
|
|
@ -9114,7 +9115,7 @@ void loop() {
|
||||||
title: 'ESP32 Doom — Raycaster (ILI9341)',
|
title: 'ESP32 Doom — Raycaster (ILI9341)',
|
||||||
description:
|
description:
|
||||||
'A Wolfenstein / early-Doom style first-person raycaster on an ESP32 + ILI9341 320x240 colour TFT. The whole screen is redrawn every frame over hardware SPI (VSPI) with Adafruit_ILI9341 block writes (one startWrite/endWrite burst per frame), plus distance fog and darker E/W faces for depth. Four buttons move and turn the player; an auto-demo walks the 16x16 map when idle. Built as an emulation-speed benchmark — it overlays the on-device FPS and prints frame/FPS stats over Serial.',
|
'A Wolfenstein / early-Doom style first-person raycaster on an ESP32 + ILI9341 320x240 colour TFT. The whole screen is redrawn every frame over hardware SPI (VSPI) with Adafruit_ILI9341 block writes (one startWrite/endWrite burst per frame), plus distance fog and darker E/W faces for depth. Four buttons move and turn the player; an auto-demo walks the 16x16 map when idle. Built as an emulation-speed benchmark — it overlays the on-device FPS and prints frame/FPS stats over Serial.',
|
||||||
libraries: ['Adafruit GFX Library', 'Adafruit ILI9341'],
|
libraries: ['Adafruit GFX Library', 'Adafruit ILI9341', 'Adafruit BusIO'],
|
||||||
category: 'games',
|
category: 'games',
|
||||||
difficulty: 'advanced',
|
difficulty: 'advanced',
|
||||||
boardType: 'esp32',
|
boardType: 'esp32',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue