-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsecrets.h.example
More file actions
29 lines (24 loc) · 1.04 KB
/
secrets.h.example
File metadata and controls
29 lines (24 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef SECRETS_H
#define SECRETS_H
// ============================================
// Development Secrets Configuration Template
// ============================================
//
// SETUP INSTRUCTIONS:
// 1. Copy this file to secrets.h
// 2. Fill in your actual credentials
// 3. secrets.h is gitignored and won't be committed
//
// If secrets.h exists, these values will automatically
// override the stored configuration on boot.
// WiFi credentials
#define DEV_WIFI_SSID "" // Your WiFi network name
#define DEV_WIFI_PASSWORD "" // Your WiFi password
// API credentials (Anthropic Claude)
#define DEV_AI_API_KEY "" // Your Anthropic API key (get from https://console.anthropic.com/)
#define DEV_AI_MODEL "claude-3-5-sonnet-20241022" // AI model to use
// LED configuration (optional overrides)
// Note: LED data pin is configured in constants.h (LED_DATA_PIN)
#define DEV_LED_COUNT 160 // Number of LEDs in strip
#define DEV_DEFAULT_BRIGHTNESS 128 // Default brightness (0-255)
#endif // SECRETS_H