diff --git a/README.md b/README.md index e3178bf..5c79a3b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ It updated the code architecture to use c++ files to break the functions into se It also updated the code to use the PlatformIO IDE instead of the Arduino IDE. The repository also contains old code and demos for the Raspberry Pi Pico W and ESP32C3 stored in the Archive folder. -Please read all the `ABOUT.md` files in the respective folders for more information on how to set up the code and how to use it. +Please read all the `ABOUT.md` files in the respective folders for more information on how to set up the code and how to use it. # Contributing Guidelines @@ -45,13 +45,17 @@ In order to connect the board to WiFi, please follow the steps below: #ifndef WIFI_SECRETS_H #define WIFI_SECRETS_H -#define WIFI_SSID "YOUR_SSID" -#define WIFI_PASSWORD "YOUR_PASSWORD" +#define WIFI_SSID "your_ssid" +#define WIFI_PASSWORD "your_password" +#define CLIENT_NAME "your_client_name" +#define CLIENT_KEY "your_client_key" #endif //WIFI_SECRETS_H ``` 3. Replace `your_ssid` with your actual Wi-Fi network name (SSID). 4. Replace `your_password` with your actual Wi-Fi password (with the quotation marks still). +5. Replace `your_client_name` with your client name from the backend. +6. replace `your_client_key` with your client key that was generated by the backend during onboarding. -Please ensure that you do not share your `wifi_secrets.h` file publicly or commit it to version control, as it contains sensitive information. +Please ensure that you do not share your `wifi_secrets.h` file publicly or commit it to version control, as it contains sensitive information. \ No newline at end of file