-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63bee21
commit 311e314
Showing
3 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
.vscode/c_cpp_properties.json | ||
.vscode/launch.json | ||
.vscode/ipch | ||
|
||
# hide secrets | ||
src/secrets.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// contains user specific information that should not be shared | ||
#ifndef SECRETS_H | ||
#define SECRETS_H | ||
|
||
// WiFi network name/SSID | ||
const char* WIFI_SSID = "MyWiFiNetwork"; | ||
const char* WIFI_PASSWORD = "VerySecurePassword"; | ||
|
||
// PINs for water pump controller | ||
const int WATER_PUMP_DIRECTION_PIN = 12; | ||
const int WATER_PUMP_BRAKE_PIN = 9; | ||
const int WATER_PUMP_POWER_PIN = 3; | ||
|
||
#endif // SECRETS_H |