24 lines
521 B
Plaintext
24 lines
521 B
Plaintext
|
#ifndef TG_ENV_H
|
||
|
#define TG_ENV_H
|
||
|
|
||
|
#define INFLUXDB_URL "https://influx.net"
|
||
|
#define INFLUXDB_TOKEN "LONG_TOKEN=="
|
||
|
#define INFLUXDB_ORG "ORG"
|
||
|
#define INFLUXDB_BUCKET "BUCKET"
|
||
|
|
||
|
|
||
|
#define NTP_URL "ch.pool.ntp.org"
|
||
|
|
||
|
#define LOCATION_0 "Zurich,ch"
|
||
|
#define LOCATION_1 "Oslo,no"
|
||
|
#define LOCATION_2 "Tokyo,jp"
|
||
|
#define LOCATION_3 "Moscow,ru"
|
||
|
#define OPENWEATHER_API "API_KEY"
|
||
|
|
||
|
#define WIFI_REGISTER_AP(wm) \
|
||
|
do { \
|
||
|
wifiMulti.addAP("SSID1", "PASS1"); \
|
||
|
wifiMulti.addAP("SSID2", "PASS2"); \
|
||
|
}while(0)
|
||
|
|
||
|
#endif
|