Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/espressif/esp-now
A connectionless Wi-Fi communication protocol
https://github.com/espressif/esp-now
control debugger esp32 iot ota
Last synced: 30 days ago
JSON representation
A connectionless Wi-Fi communication protocol
- Host: GitHub
- URL: https://github.com/espressif/esp-now
- Owner: espressif
- License: apache-2.0
- Created: 2021-08-27T06:57:03.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T03:45:36.000Z (2 months ago)
- Last Synced: 2024-09-29T14:32:06.475Z (about 1 month ago)
- Topics: control, debugger, esp32, iot, ota
- Language: C
- Homepage:
- Size: 15.9 MB
- Stars: 523
- Watchers: 22
- Forks: 93
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# ESP-NOW Component
[![Component Registry](https://components.espressif.com/components/espressif/esp-now/badge.svg)](https://components.espressif.com/components/espressif/esp-now)
- [User Guide](https://github.com/espressif/esp-now/tree/master/User_Guide.md)
- [User Guide 中文版](https://github.com/espressif/esp-now/tree/master/User_Guide_CN.md)
esp-now supports one-to-many and many-to-many device connection and control which can be used for the mass data transmission, like network config, firmware upgrade and debugging etc.
### Add component to your project
Please use the component manager command `add-dependency` to add the `esp-now` to your project's dependency, during the `CMake` step the component will be downloaded automatically.
```
idf.py add-dependency "espressif/esp-now=*"
```## Example
Please use the component manager command `create-project-from-example` to create the project from example template.
```
idf.py create-project-from-example "espressif/esp-now=*:coin_cell_demo/bulb"
```Then the example will be downloaded in current folder, you can check into it for build and flash.
> You can use this command to download other examples. Or you can download examples from esp-now repository:
1. [coin_cell_demo/bulb](https://github.com/espressif/esp-now/tree/master/examples/coin_cell_demo/bulb)
2. [coin_cell_demo/switch](https://github.com/espressif/esp-now/tree/master/examples/coin_cell_demo/switch)
3. [control](https://github.com/espressif/esp-now/tree/master/examples/control)
4. [get-started](https://github.com/espressif/esp-now/tree/master/examples/get-started)
5. [ota](https://github.com/espressif/esp-now/tree/master/examples/ota)
6. [security](https://github.com/espressif/esp-now/tree/master/examples/security)
7. [solution](https://github.com/espressif/esp-now/tree/master/examples/solution)
8. [wireless_debug](https://github.com/espressif/esp-now/tree/master/examples/wireless_debug)### Q&A
Q1. I encountered the following problems when using the package manager
```
Executing action: create-project-from-example
CMakeLists.txt not found in project directory /home/username
```A1. This is because an older version packege manager was used, please run `pip install -U idf-component-manager` in ESP-IDF environment to update.