31 lines
779 B
C
31 lines
779 B
C
#ifndef __DEVICE_CONFIG__
|
|
#define __DEVICE_CONFIG__
|
|
|
|
// Scheduler config
|
|
#define _TASK_SLEEP_ON_IDLE_RUN
|
|
#define _TASK_STD_FUNCTION
|
|
#define _TASK_PRIORITY
|
|
|
|
// Chip config
|
|
#define SPROCKET_TYPE "SPROCKET"
|
|
#define SERIAL_BAUD_RATE 115200
|
|
#define STARTUP_DELAY 1000
|
|
|
|
// network config
|
|
#define SPROCKET_MODE 1
|
|
#define WIFI_CHANNEL 11
|
|
#define AP_SSID "sprocket"
|
|
#define AP_PASSWORD "th3r31sn0sp00n"
|
|
#define STATION_SSID "MyAP"
|
|
#define STATION_PASSWORD "th3r31sn0sp00n"
|
|
#define HOSTNAME "sprocket"
|
|
#define CONNECT_TIMEOUT 10000
|
|
|
|
// NeoPixel conig
|
|
#define LED_STRIP_PIN D2
|
|
#define LED_STRIP_LENGTH 8
|
|
#define LED_STRIP_BRIGHTNESS 48
|
|
#define LED_STRIP_UPDATE_INTERVAL 200
|
|
#define LED_STRIP_DEFAULT_COLOR 100
|
|
|
|
#endif |