weatherstation/firmware/config_user.h.example

19 lines
493 B
Plaintext
Raw Normal View History

2019-01-08 22:41:24 +01:00
// Copy this file to config_user.h and adjust it to your needs.
// Debug output on the serial console
2019-01-27 18:49:28 +01:00
#define DEBUG
2019-01-08 22:41:24 +01:00
// Enable/Disable features
2019-01-27 18:49:28 +01:00
//#define WEBUPDATER_FEATURE
#define BATTERY_POWERED
2019-01-08 22:41:24 +01:00
// 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";