一、使用公共组件
进入组件注册页面,搜索想要添加的组件,我这里添加OLED的组件SSD1306
选择版本,点击安装
或者通过命令进行安装
idf.py add-dependency "espressif/ssd1306^1.0.5"
如果提示下面错误
The following Python requirements are not satisfied:
Requirement 'setuptools<71.0.1,>=21' was not met. Installed version: 75.6.0
To install the missing packages, please run "install.bat"
Diagnostic information:
IDF_PYTHON_ENV_PATH: D:\Espressif\python_env\idf5.3_py3.11_env
Python interpreter used: D:\Espressif\python_env\idf5.3_py3.11_env\Scripts\python.exe
Constraint file: D:\Espressif\espidf.constraints.v5.3.txt
Requirement files:
- D:\esp\esp-idf\tools\requirements\requirements.core.txt
Python being checked: D:\Espressif\python_env\idf5.3_py3.11_env\Scripts\python.exe
ESP-IDF v5.3.2
输入下面命令即可
python -m pip install setuptools==21
然后再次输入
idf.py add-dependency "espressif/ssd1306^1.0.5"
已经提示安装成功了
Executing action: add-dependency
NOTICE: Successfully added dependency "espressif/ssd1306": "^1.0.5" to component "main"
NOTICE: If you want to make additional changes to the manifest file at path E:/guo/esp32/testing/sample_project/main/idf_component.yml manually, please refer to the documentation: https://docs.espressif.com/projects/idf-component-manager/en/latest/reference/manifest_file.html