add lsp31 config (huzzah, high freq)

This commit is contained in:
Jannik Beyerstedt 2022-02-20 17:29:16 +01:00
parent 06e6b8111b
commit 517653c8de
1 changed files with 10 additions and 9 deletions

View File

@ -27,14 +27,14 @@ rtcStore_t rtcStore;
#ifndef NODENAME
// #define NODENAME "env-huzzah-01" /* IMPORTANT: CHANGE FOR EACH DEVICE */
// #define NODENAME "env-keller" /* IMPORTANT: CHANGE FOR EACH DEVICE */
#define NODENAME "env-TODO" /* IMPORTANT: CHANGE FOR EACH DEVICE */
#define NODENAME "env-lsp31" /* IMPORTANT: CHANGE FOR EACH DEVICE */
#endif
#ifndef BOARD
#define BOARD 0 /* IMPORTANT: select one of the BOARD_* types */
#define BOARD 1 /* IMPORTANT: select one of the BOARD_* types */
#endif
#define DB_HOSTNAME "influx-iot.fra80"
#define DB_HOSTNAME "influx-iot.jtbx.de"
#define DB_PASSWD "c2Vuc29yczpTZW5zb3JzLXcuaW5mbHV4QGhvbWU" // BasicAuth String
#if BOARD == BOARD_HUZZAH
@ -62,15 +62,15 @@ float tempOffset = +0.0;
float humiOffset = +0.0;
const char* host = DB_HOSTNAME;
const int httpPort = 8086;
const int httpPort = 65086;
const char* wlan_ssid = "WLAN-Bey-IoT";
const char* wlan_passwd = "IoT-Fra80";
const char* wlan_ssid = "WLAN-Bey";
const char* wlan_passwd = "AB25TB22JB06PB15";
#ifndef TEST
String loggerName = NODENAME;
const uint16_t sendInterval_sec = 1800; /* 1800 sec (30 min) */
const uint8_t sampleAvgNum = 6; /* 6 (every 5 minutes) */
const uint16_t sendInterval_sec = 180; /* 180 sec (3 min) */
const uint8_t sampleAvgNum = 6; /* 6 (every 30 seconds) */
const uint16_t sampleInterval_sec = sendInterval_sec / sampleAvgNum;
String serviceUri = "/write?db=sensors";
#else
@ -259,7 +259,8 @@ void setup() {
INFO_PRINT("[INFO ] connecting to ");
INFO_PRINT(host);
WiFiClient client;
WiFiClientSecure client;
client.setInsecure();
if (client.connect(host, httpPort)) {
INFO_PRINTLN(" > success");