ESP32-C3 firmware for interactive treasure hunt device with RFID, OLED display, LED effects, buzzer, and touch input. Includes 3D printable STL files for the enclosure. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
271 B
Text
14 lines
271 B
Text
/**
|
|
* @file secrets.h
|
|
* @brief Sensitive credentials — DO NOT COMMIT
|
|
*
|
|
* Copy this file to secrets.h and fill in your values.
|
|
*/
|
|
|
|
#ifndef SECRETS_H
|
|
#define SECRETS_H
|
|
|
|
#define WIFI_SSID "your-ssid"
|
|
#define WIFI_PASSWORD "your-password"
|
|
|
|
#endif // SECRETS_H
|