about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md index 542c061..0f5f6c4 100644 --- a/README.md +++ b/README.md
@@ -59,3 +59,17 @@ $ cmake ..
59$ make 59$ make
60``` 60```
61 61
62## ESP32
63This project has been configured to be easily applicable as ESP-IDF component
64
65### Steps to include (Example)
66
671. Put `libwifi` folder in `components/`
682. Open `main/CMakeLists.txt` and add `libwifi` to `COMPONENT_REQUIRES`
693. In `main/main.c` add `#include "libwifi.h"`
704. Test by running following code: ```
71```C
72void app_main(void){
73 printf("libwifi version: %s", libwifi_get_version());
74}
75``` \ No newline at end of file