es7210: use managed component

This commit is contained in:
laokaiyao 2022-10-28 11:19:17 +08:00
parent a43a6809c7
commit 838abedbc8
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ This example is based on [es8311 component](https://components.espressif.com/com
The component can be installed by esp component manager. Since this example already installed it, no need to re-installed it again, but if you want to install this component in your own project, you can input the following command:
```
idf.py add-dependency espressif/es8311==0.0.2-alpha
idf.py add-dependency espressif/es8311^1.0.0
```
If the dependency is added, you can check `idf_component.yml` for more detail. When building this example or other projects with managed components, the component manager will search for the required components online and download them into the `managed_componets` folder.

View File

@ -1,6 +1,6 @@
## IDF Component Manager Manifest File
dependencies:
espressif/es8311: "==1.0.0"
espressif/es8311: "^1.0.0"
## Required IDF version
idf:
version: "^5.0"