23 lines
507 B
C
23 lines
507 B
C
#ifndef __NPX_CONFIG__
|
|
#define __NPX_CONFIG__
|
|
|
|
// NeoPixel Configuration
|
|
#define NEOPIXEL_PIN 2
|
|
#define NEOPIXEL_LENGTH 4
|
|
#define NEOPIXEL_BRIGHTNESS 100
|
|
#define NEOPIXEL_UPDATE_INTERVAL 100
|
|
|
|
// Spore Framework Configuration
|
|
#define SPORE_APP_NAME "neopattern"
|
|
#define SPORE_DEVICE_TYPE "led_strip"
|
|
|
|
// Network Configuration (if needed)
|
|
#define WIFI_SSID "your_wifi_ssid"
|
|
#define WIFI_PASSWORD "your_wifi_password"
|
|
|
|
// Debug Configuration
|
|
#define DEBUG_SERIAL_BAUD 115200
|
|
#define DEBUG_ENABLED true
|
|
|
|
#endif
|