examples: add import prebuilt example

This commit is contained in:
Renz Christian Bagaporo
2019-11-28 14:39:12 +08:00
parent 91b421c35f
commit 2ebaf53edc
11 changed files with 136 additions and 0 deletions
@@ -0,0 +1,2 @@
idf_component_register(SRCS "main.c"
INCLUDE_DIRS "")
@@ -0,0 +1,6 @@
#include <stdio.h>
void app_main(void)
{
printf("Hello World!\n");
}