Compare commits
3 commits
417493c8ba
...
6aa242da85
Author | SHA1 | Date | |
---|---|---|---|
|
6aa242da85 | ||
|
f22ec9b02d | ||
|
3e8d65d121 |
4 changed files with 35 additions and 19 deletions
|
@ -6,7 +6,7 @@
|
||||||
#define WIFI_AUTOCONNECT_TIMEOUT_S 60
|
#define WIFI_AUTOCONNECT_TIMEOUT_S 60
|
||||||
#define WIFI_CONFIG_PORTAL_TIMEOUT_S 120
|
#define WIFI_CONFIG_PORTAL_TIMEOUT_S 120
|
||||||
#define UPDATE_SENSOR_INTERVAL_S 300
|
#define UPDATE_SENSOR_INTERVAL_S 300
|
||||||
#define UPDATE_WEBSERVER_INTVERVAL_S 1 // Do not change, bigger values will prevent using webupdater webinterface
|
#define UPDATE_WEBSERVER_INTVERVAL_MS 500 // Values greater than 1000 will negative affect availability of the webinterface
|
||||||
#define DELAY_LOOP_MS 100
|
#define DELAY_LOOP_MS 100
|
||||||
#define POWERSAVING_SLEEP_S 600
|
#define POWERSAVING_SLEEP_S 600
|
||||||
#define EMERGENCY_SLEEP_S 172800 // Sleep for 2 days to recover
|
#define EMERGENCY_SLEEP_S 172800 // Sleep for 2 days to recover
|
||||||
|
@ -14,6 +14,7 @@
|
||||||
#define WIND_SENSOR_MEAS_TIME_S 15
|
#define WIND_SENSOR_MEAS_TIME_S 15
|
||||||
#define WATCHDOG_TIMEOUT_MS 30000
|
#define WATCHDOG_TIMEOUT_MS 30000
|
||||||
#define WIFI_CHECK_INTERVAL_MS 120000
|
#define WIFI_CHECK_INTERVAL_MS 120000
|
||||||
|
#define INFLUXDB_TIMEOUT_MS 1000
|
||||||
|
|
||||||
#define ENERGY_SAVING_ITERATIONS 30
|
#define ENERGY_SAVING_ITERATIONS 30
|
||||||
|
|
||||||
|
|
|
@ -338,7 +338,7 @@ void _fsm_loop()
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef WEBUPDATER_FEATURE
|
#ifdef WEBUPDATER_FEATURE
|
||||||
if ((update_webserver_cnt + (UPDATE_WEBSERVER_INTVERVAL_S * 1000)) <= millis())
|
if ((update_webserver_cnt + (UPDATE_WEBSERVER_INTVERVAL_MS)) <= millis())
|
||||||
{
|
{
|
||||||
//debug("web updater call");
|
//debug("web updater call");
|
||||||
update_webserver_cnt = millis();
|
update_webserver_cnt = millis();
|
||||||
|
@ -360,9 +360,12 @@ void _fsm_loop()
|
||||||
// reset the wait timer to get a value every HTTP_CALL_ON_WINDSPEED_INTERVAL_S independently to the runtime of the measurement
|
// reset the wait timer to get a value every HTTP_CALL_ON_WINDSPEED_INTERVAL_S independently to the runtime of the measurement
|
||||||
update_windspeed_exceed_cnt = millis();
|
update_windspeed_exceed_cnt = millis();
|
||||||
|
|
||||||
start_measure_wind(); // start measurement of wind speed
|
// start measurement of wind speed
|
||||||
|
start_measure_wind();
|
||||||
|
|
||||||
fsm_state = FSM_STATE_11; // wait untile the wind meas time exceeded
|
fsm_state = FSM_STATE_11; // wait untile the wind meas time exceeded
|
||||||
break; // abort case here to prevent read of next sensor in list
|
break; // abort case here to prevent read of next sensor in list
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
fsm_state = FSM_STATE_2;
|
fsm_state = FSM_STATE_2;
|
||||||
|
|
|
@ -176,26 +176,35 @@ void pushToInfluxDB(String device, float sensorValues[]) {
|
||||||
void _writePoint()
|
void _writePoint()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
uint32_t _timeout = millis();
|
||||||
|
|
||||||
|
//debug("InfluxDB2: check connection");
|
||||||
|
do {
|
||||||
|
} while (client.validateConnection() and (_timeout + INFLUXDB_TIMEOUT_MS) <= millis());
|
||||||
|
|
||||||
|
if (! client.validateConnection())
|
||||||
|
{
|
||||||
|
debug("Can't write to InfluxDB2, timeout validating connection");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_timeout = millis();
|
||||||
|
|
||||||
|
//debug("InfluxDB2: waiting for write ready");
|
||||||
// wait unitl ready
|
// wait unitl ready
|
||||||
do {
|
do {
|
||||||
#ifdef DEBUG
|
} while (client.canSendRequest() == false and (_timeout + INFLUXDB_TIMEOUT_MS) <= millis());
|
||||||
Serial.print("InfluxDB: waiting for write ready\n");
|
|
||||||
#endif
|
if (! client.canSendRequest())
|
||||||
} while (client.canSendRequest() == false);
|
{
|
||||||
|
debug("Can't write to InfluxDB2, timeout canSendRequest");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Write point
|
// Write point
|
||||||
if (!client.writePoint(sensor)) {
|
if (!client.writePoint(sensor))
|
||||||
#ifdef DEBUG
|
{
|
||||||
Serial.print("InfluxDB write failed: ");
|
debug("InfluxDB2 write failed: " + String(client.getLastErrorMessage()) + " Err: " + String(client.getLastStatusCode()));
|
||||||
Serial.println(client.getLastErrorMessage());
|
|
||||||
Serial.print("\nErrorcode: ");
|
|
||||||
Serial.println(client.getLastStatusCode());
|
|
||||||
Serial.print("\n");
|
|
||||||
#endif
|
|
||||||
} else {
|
|
||||||
#ifdef DEBUG
|
|
||||||
Serial.print("InfluxDB write done\n");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,9 +25,11 @@ float wind_speed()
|
||||||
|
|
||||||
void start_measure_wind()
|
void start_measure_wind()
|
||||||
{
|
{
|
||||||
|
|
||||||
start_meas_wind_time = millis();
|
start_meas_wind_time = millis();
|
||||||
anemometerRotations = 0;
|
anemometerRotations = 0;
|
||||||
interruptNumber = digitalPinToInterrupt(ANEMOMETER_PIN);
|
interruptNumber = digitalPinToInterrupt(ANEMOMETER_PIN);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean check_measure_wind_done()
|
boolean check_measure_wind_done()
|
||||||
|
@ -42,5 +44,6 @@ boolean check_measure_wind_done()
|
||||||
|
|
||||||
float measure_wind_result()
|
float measure_wind_result()
|
||||||
{
|
{
|
||||||
|
start_meas_wind_time = 0;
|
||||||
return (float)anemometerRotations * WINDSPEED_FACTOR;
|
return (float)anemometerRotations * WINDSPEED_FACTOR;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue