Re-configure for central InfluxDB
This commit is contained in:
parent
49ebf04b48
commit
33355b060d
|
@ -34,7 +34,7 @@ rtcStore_t rtcStore;
|
||||||
#define BOARD 3 /* IMPORTANT: select one of the BOARD_* types */
|
#define BOARD 3 /* IMPORTANT: select one of the BOARD_* types */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DB_HOSTNAME "influx-iot.fra80"
|
#define DB_HOSTNAME "influx.jtbx.de"
|
||||||
#define DB_PASSWD "c2Vuc29yczpTZW5zb3JzLXcuaW5mbHV4QGhvbWU" // BasicAuth String
|
#define DB_PASSWD "c2Vuc29yczpTZW5zb3JzLXcuaW5mbHV4QGhvbWU" // BasicAuth String
|
||||||
|
|
||||||
#if BOARD == BOARD_HUZZAH
|
#if BOARD == BOARD_HUZZAH
|
||||||
|
@ -62,7 +62,7 @@ float tempOffset = +0.0;
|
||||||
float humiOffset = +0.0;
|
float humiOffset = +0.0;
|
||||||
|
|
||||||
const char* host = DB_HOSTNAME;
|
const char* host = DB_HOSTNAME;
|
||||||
const int httpPort = 8086;
|
const int httpPort = 65086;
|
||||||
|
|
||||||
const char* wlan_ssid = "WLAN-Bey-IoT";
|
const char* wlan_ssid = "WLAN-Bey-IoT";
|
||||||
const char* wlan_passwd = "IoT-Fra80";
|
const char* wlan_passwd = "IoT-Fra80";
|
||||||
|
@ -259,7 +259,8 @@ void setup() {
|
||||||
|
|
||||||
INFO_PRINT("[INFO ] connecting to ");
|
INFO_PRINT("[INFO ] connecting to ");
|
||||||
INFO_PRINT(host);
|
INFO_PRINT(host);
|
||||||
WiFiClient client;
|
WiFiClientSecure client;
|
||||||
|
client.setInsecure();
|
||||||
if (client.connect(host, httpPort)) {
|
if (client.connect(host, httpPort)) {
|
||||||
INFO_PRINTLN(" > success");
|
INFO_PRINTLN(" > success");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue