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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 0f5f6c4..de9108c 100644 --- a/README.md +++ b/README.md
@@ -67,9 +67,9 @@ This project has been configured to be easily applicable as ESP-IDF component
671. Put `libwifi` folder in `components/` 671. Put `libwifi` folder in `components/`
682. Open `main/CMakeLists.txt` and add `libwifi` to `COMPONENT_REQUIRES` 682. Open `main/CMakeLists.txt` and add `libwifi` to `COMPONENT_REQUIRES`
693. In `main/main.c` add `#include "libwifi.h"` 693. In `main/main.c` add `#include "libwifi.h"`
704. Test by running following code: ``` 704. Test by running following code:
71```C 71```C
72void app_main(void){ 72void app_main(void){
73 printf("libwifi version: %s", libwifi_get_version()); 73 printf("libwifi version: %s", libwifi_get_version());
74} 74}
75``` \ No newline at end of file 75```