25 lines
556 B
Text
25 lines
556 B
Text
// Copy this file to config_user.h and adjust it to your needs.
|
|
|
|
|
|
#ifndef __CONFIG_USER_H__
|
|
#define __CONFIG_USER_H__
|
|
|
|
// Debug output on the serial console
|
|
#define DEBUG
|
|
|
|
// Enable/Disable features
|
|
//#define WEBUPDATER_FEATURE
|
|
#define BATTERY_POWERED
|
|
|
|
// 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";
|
|
|
|
#endif
|
|
|