From 263a9b291832fe598a8eba42b8e41ef6730c662a Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Sun, 14 Jul 2024 12:55:47 -0400 Subject: [PATCH] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3c7483c9d..5f8a65039 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,13 @@ ESP32-C3 is a cost-effective, RISC-V-based MCU with Wi-Fi and Bluetooth 5 (LE) c ESP Nodes performing specific operations can use different ESP32 Modules for optimization purposes. As dicersity of ESP32s being used by the Nodes increases, so does the code. However, in order to keep core code independent from the ESP32 Module being used, the so-called configurations specific for the particular ESP32 Module are defined in config.h file. +> [!IMPORTANT] +> Remember to add entry for congif.h inside .gitignore file to prevent Git from pushing security sensitive data to the repository. + ```C -#ifnotdef -#define +#define WIFI_NAME "IoT_bots" +#define WIFI_PASSWORD "405405405" + ``` Bare-bones ESP32 module can be programmed via UART interface (`GPIO03` and `GPIO01`) using USB to UART adapter.