Skip to content

Commit

Permalink
Updated README with new wifi information
Browse files Browse the repository at this point in the history
  • Loading branch information
leslier7 committed Jan 19, 2025
1 parent aea20f6 commit fc26b0f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.

0 comments on commit fc26b0f

Please sign in to comment.