19 lines
519 B
Text
19 lines
519 B
Text
// Copy this file to config_user.h and adjust it to your needs.
|
|
|
|
// Debug output on the serial console
|
|
#define DEBUG 0
|
|
|
|
// Enable/Disable features
|
|
#define WEBUPDATER_FEATURE 0
|
|
#define BATTERY_POWERED 1
|
|
#define POWERSAVING 1
|
|
|
|
// InfluxDB credentials
|
|
const char *INFLUXDB_HOST = "hostname";
|
|
const uint16_t INFLUXDB_PORT = 80;
|
|
const char *INFLUXDB_DB = "database";
|
|
const char *INFLUXDB_USER = "user";
|
|
const char *INFLUXDB_PASS = "password";
|
|
|
|
// Device name
|
|
String DEVICE_NAME = "devicename";
|