Fix idf_component.yml

This commit is contained in:
Eric
2025-09-08 21:24:29 -07:00
parent bfac7703fb
commit ce85b4b69b
2 changed files with 14 additions and 0 deletions

View File

@@ -25,6 +25,18 @@ A comprehensive map tiles component for ESP-IDF projects using LVGL 9.x. This co
### Using ESP-IDF Component Manager
You can easily add this component to your project using the idf.py command or by manually updating your idf_component.yml file.
#### Option 1: Using the idf.py add-dependency command (Recommended)
From your project's root directory, simply run the following command in your terminal:
```bash
idf.py add-dependency "0015/map_tiles^1.1.0"
```
This command will automatically add the component to your idf_component.yml file and download the required files the next time you build your project.
#### Option 2: Manual idf_component.yml update
Add to your project's `main/idf_component.yml`:
```yaml

View File

@@ -1,3 +1,5 @@
namespace: "0015"
name: "map_tiles"
version: "1.1.0"
maintainers:
- Eric Nam <thatprojectstudio@gmail.com>