You are using staging server - a separate instance of the ESP Component Registry that allows you to try distribution tools and processes without affecting the real registry.
This component is an example, to be used with the IDF component manager.
To use it with your ESP-IDF project make sure that the component manager is installed and create the manifest idf_component.yml
in the project's main
component directory:
Yaml
dependencies:
example/cmp: "^3.3.3"
This component defines only one function void cmp_hello()
that prints a welcome message.
C
#include "cmp.h"
void app_main(void)
{
cmp_hello();
}
idf.py add-dependency "kumekay/single_target^2.0.0-beta2"