What problem does it solve? Deploying neural networks on ESP32-family chips requires correct model quantization, memory planning, and inference code, and small mistakes in target selection, quantization scale, or buffer reuse silently produce wrong results. This Skill grounds every ESP-DL API call, Kconfig symbol, and quantization parameter in the real esp-dl repository so generated firmware and quantization scripts work correctly. ## Core Features & Use Cases - Scenario Recipes: Step-by-step call chains for project setup, loading .espdl models from rodata/partition/SD card, running inference, streaming models, profiling, and vision pipelines (YOLO11 detection, pose, segmentation, MobileNetV2 classification). - ESP-PPQ Quantization Guidance: Quantize ONNX/PyTorch models to .espdl with correct target selection (c/esp32s3/esp32p4), plus AutoQuant search, TQT, mixed precision, and layerwise equalization for accuracy recovery. - Real API & Pitfall Reference: Verified dl::Model / dl::TensorBase signatures, Kconfig options, and 20 documented pitfalls such as quantize/dequantize scale direction and 16-byte alignment. - Use Case: A developer wants to run a YOLO11n detection model on an ESP32-S3. The Skill guides quantizing the ONNX model with target esp32s3, embedding the .espdl via target_add_aligned_binary_data, and writing the C++ inference loop with proper input quantization and output dequantization. ## Quick Start Ask the AI to help you quantize an ONNX model with ESP-PPQ and deploy it on an ESP32-S3 using ESP-DL.