Ivan Grokhotkov 66c693eebb Merge branch 'feature/deep_sleep_wakeup_from_touch' into 'master' 9 سال پیش
..
bluetooth b582697889 component/bt : add adv/scan start complete event 9 سال پیش
ethernet 975be7a2c9 Merge branch 'bugfix/github_small_fixes' into 'master' 9 سال پیش
get-started 0b6598c492 Added README.md to example category folders 9 سال پیش
peripherals 41890f15b9 - examples: add 'Capacitive touch sensor read' example 9 سال پیش
protocols 26dec992eb deep sleep: add note about disabling WiFi and BT 9 سال پیش
storage 5ea9097dbd esptool: Update to latest v2.0 beta version 9 سال پیش
system 66c693eebb Merge branch 'feature/deep_sleep_wakeup_from_touch' into 'master' 9 سال پیش
wifi 0b6598c492 Added README.md to example category folders 9 سال پیش
README.md b981b195be Fixed broken links 9 سال پیش

README.md

Examples

This directory contains a growing number of simple example projects for esp-idf. These are intended to show basic esp-idf functionality, and to provide you can use for your own projects.

Using Examples

Building examples is the same as building any other project:

  • Follow the setup instructions in the top-level esp-idf README.

  • Set IDF_PATH environment variable to point to the path to the esp-idf top-level directory.

  • Change into the directory of the example you'd like to build.

  • make menuconfig to configure the example. Most examples require a simple WiFi SSID & password via this configuration.

  • make to build the example.

  • Follow the printed instructions to flash, or run make flash.

Copying Examples

Each example is a standalone project. The examples do not have to be inside the esp-idf directory. You can copy an example directory to anywhere on your computer in order to make a copy that you can modify and work with.

The IDF_PATH environment variable is the only thing that connects the example to the rest of the esp-idf system.

If you're looking for a more bare-bones project to start from, try esp-idf-template.

Contributing Examples

If you have a new example you think we'd like, please consider sending it to us as a Pull Request.

Please read the esp-idf CONTRIBUTING.rst file which lays out general contribution rules.

In addition, here are some tips for creating good examples:

  • A good example is documented and the basic options can be configured.
  • A good example does not contain a lot of code. If there is a lot of generic code in the example, consider refactoring that code into a standalone component and then use the component's API in your example.
  • Examples must be licensed under the Apache License 2.0 or (preferably for examples) if possible you can declare the example to be Public Domain / Creative Commons Zero.