weatherstation/firmware/config_user.h.example

46 lines
1.2 KiB
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.
2019-01-27 20:31:15 +01:00
#ifndef __CONFIG_USER_H__
#define __CONFIG_USER_H__
2019-01-08 22:41:24 +01:00
// 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 INFLUXDB_FEATURE
#define SERIAL_FEATURE
//#define BATTERY_POWERED
//#define SENSOR_WIND
#define SENSOR_APDS9960
//#define SENSOR_APDS9930
#define SENSOR_BME280
#define SENSOR_BATTERY
2020-02-20 19:49:44 +01:00
//#define BAT_PINS_D34
// only possible if webupdater is also enabled
//#define HOMEBRIDGE_WEBSTAT
// retries to connect after 5 seconds or starts the wifimanager
//#define SLEEP_IF_NO_WLAN_CONNECTION
// Restarts the firmware every n seconds
//#define RESET_ESP_TIMEINTERVAL
2019-01-08 22:41:24 +01:00
2019-02-03 15:09:01 +01:00
const float HUMIDITY_FACTOR = 1.0;
const float LIGHT_FACTOR = 1.0;
const float TEMP_FACTOR = 1.0;
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
// WARNING: Keep the name short! If your access point did not show up, you
// maybe have a TOO LONG SSID!
2019-01-08 22:41:24 +01:00
String DEVICE_NAME = "devicename";
2019-01-27 20:31:15 +01:00
#endif