Skip to content

Commit

Permalink
firmware: config: fix wrong wifi password variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylensky committed Jan 29, 2025
1 parent 4908c87 commit 91dbae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esp32_wireless_control/firmware/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
#ifndef WIFI_SSID
#define WIFI_SSID "OG Star Tracker" // change to your SSID
#endif
#ifndef WIFI_PASS
#define WIFI_PASS "password123" // change to your password, must be 8+ characters
#ifndef WIFI_PASSWORD
#define WIFI_PASSWORD "password123" // change to your password, must be 8+ characters
#endif
// If you are using AP mode, you can access the website using the below URL
#ifndef WEBSITE_NAME
Expand Down

0 comments on commit 91dbae5

Please sign in to comment.