20 lines
512 B
C
20 lines
512 B
C
/*
|
|
* secrets_template.h
|
|
*
|
|
* INSTRUCTIONS:
|
|
* 1. Copy this file to a new file named "secrets.h" in the same directory.
|
|
* 2. Open "secrets.h" and populate the values below with your actual configuration.
|
|
* 3. "secrets.h" is excluded from version control to protect your sensitive data.
|
|
*/
|
|
|
|
#ifndef SECRETS_H
|
|
#define SECRETS_H
|
|
|
|
// WiFi credentials
|
|
#define SECRET_WIFI_SSID "YOUR_WIFI_SSID"
|
|
#define SECRET_WIFI_PASSWORD "YOUR_WIFI_PASSWORD"
|
|
|
|
// ntfy.sh topic
|
|
#define SECRET_NTFY_TOPIC "YOUR_NTFY_TOPIC"
|
|
|
|
#endif |