2022-05-09 09:42:42 +02:00
|
|
|
// Standard ESP8266 libs from project folder
|
2018-06-23 21:49:11 +02:00
|
|
|
#include <ESP8266mDNS.h>
|
|
|
|
#include <ESP8266HTTPUpdateServer.h>
|
2017-11-07 22:20:14 +01:00
|
|
|
#include <ESP8266WiFi.h>
|
2017-11-12 22:34:08 +01:00
|
|
|
#include <DNSServer.h>
|
|
|
|
#include <ESP8266WebServer.h>
|
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
#include <WiFiClient.h> // WiFiClient
|
|
|
|
#include <WiFiManager.h> // WiFiManager from bib manager
|
2019-02-03 16:12:19 +01:00
|
|
|
|
|
|
|
// Project includes
|
2017-11-07 22:20:14 +01:00
|
|
|
#include "config.h"
|
2019-02-03 16:12:19 +01:00
|
|
|
|
2019-01-08 22:41:24 +01:00
|
|
|
#include "config_user.h"
|
2017-11-07 22:20:14 +01:00
|
|
|
|
2018-06-24 12:00:51 +02:00
|
|
|
//*************************************************************************//
|
|
|
|
|
2019-08-04 11:56:18 +02:00
|
|
|
const uint8_t VALUES = 8;
|
2019-08-04 13:18:28 +02:00
|
|
|
float currentSensorData[VALUES] = {nanf("no value"), nanf("no value"), nanf("no value"), nanf("no value"), nanf("no value"), nanf("no value"), nanf("no value"), nanf("no value")};
|
2019-08-04 11:56:18 +02:00
|
|
|
float (*sensors[VALUES])() = {};
|
2017-11-07 22:20:14 +01:00
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
uint16_t update_sensor_cnt = 0;
|
|
|
|
uint16_t update_webserver_cnt = 0;
|
2018-06-24 16:54:57 +02:00
|
|
|
|
2017-11-12 22:34:08 +01:00
|
|
|
WiFiManager wifiManager;
|
2019-03-31 17:01:04 +02:00
|
|
|
|
2018-06-24 12:00:51 +02:00
|
|
|
//*************************************************************************//
|
2018-06-23 21:49:11 +02:00
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
void debug(String x)
|
|
|
|
{
|
2019-08-03 23:17:17 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
Serial.println(x);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
void setup()
|
|
|
|
{
|
2019-02-06 21:26:13 +01:00
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
#if defined(DEBUG) || defined(SERIAL_FEATURE)
|
2018-06-23 20:13:33 +02:00
|
|
|
Serial.begin(115200);
|
|
|
|
#endif
|
|
|
|
|
2017-11-12 22:34:08 +01:00
|
|
|
// Pin settings
|
2020-02-20 19:49:44 +01:00
|
|
|
pinMode(BAT_CHARGED_PIN, INPUT);
|
|
|
|
pinMode(BAT_CHARGING_PIN, INPUT);
|
2017-11-12 21:37:55 +01:00
|
|
|
pinMode(STATUS_LED_PIN, OUTPUT);
|
2018-06-24 12:00:51 +02:00
|
|
|
pinMode(ANEMOMETER_PIN, INPUT_PULLUP);
|
2018-07-11 11:12:53 +02:00
|
|
|
pinMode(A0, INPUT);
|
2017-11-12 22:34:08 +01:00
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
digitalWrite(STATUS_LED_PIN, LOW);
|
2018-07-12 22:30:30 +02:00
|
|
|
|
2020-02-20 19:49:44 +01:00
|
|
|
#ifndef BAT_PINS_D34
|
|
|
|
debug("D5 D6 used as battery pins");
|
|
|
|
#else
|
|
|
|
debug("D3 D4 used as battery pins");
|
|
|
|
#endif
|
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifdef BATTERY_POWERED
|
2019-01-06 15:21:03 +01:00
|
|
|
criticalBatCheck();
|
2019-01-27 18:49:28 +01:00
|
|
|
#endif
|
2017-11-20 20:15:14 +01:00
|
|
|
// Establish WiFi connection
|
2019-01-27 18:49:28 +01:00
|
|
|
String wifiName = "oko-weather-" + DEVICE_NAME;
|
2018-07-19 20:13:08 +02:00
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
wifiManager.setMinimumSignalQuality(WIFI_MINIMUM_SIGNAL_QUALITY);
|
|
|
|
// the time in seconds to wait for the known wifi connection
|
|
|
|
wifiManager.setConnectTimeout(WIFI_AUTOCONNECT_TIMEOUT_S);
|
|
|
|
// the time in seconds to wait for the user to configure the device
|
|
|
|
wifiManager.setTimeout(WIFI_CONFIG_PORTAL_TIMEOUT_S);
|
2018-07-19 20:13:08 +02:00
|
|
|
|
2022-05-15 22:47:23 +02:00
|
|
|
#ifndef SLEEP_IF_NO_WLAN_CONNECTION
|
2022-05-15 22:34:36 +02:00
|
|
|
while
|
|
|
|
#endif
|
2022-05-15 23:06:02 +02:00
|
|
|
#ifdef def SLEEP_IF_NO_WLAN_CONNECTION
|
2022-05-15 22:34:36 +02:00
|
|
|
if
|
|
|
|
#endif
|
|
|
|
(!wifiManager.autoConnect(wifiName.c_str(), "DEADBEEF"))
|
2022-05-14 19:38:58 +02:00
|
|
|
{
|
|
|
|
debug("WiFi connection failed, try again in 5 seconds...");
|
2019-01-27 18:49:28 +01:00
|
|
|
// If autoconnect to WLAN failed and no client connected, go to deep sleep
|
2022-05-15 22:34:36 +02:00
|
|
|
#ifdef SLEEP_IF_NO_WLAN_CONNECTION
|
|
|
|
ESP.deepSleep(POWERSAVING_SLEEP_S * 1000000, WAKE_RF_DEFAULT);
|
|
|
|
delay(100);
|
|
|
|
#endif
|
|
|
|
#ifndef SLEEP_IF_NO_WLAN_CONNECTION
|
2022-05-14 19:38:58 +02:00
|
|
|
delay(5000);
|
2022-05-15 22:34:36 +02:00
|
|
|
#endif
|
2017-11-12 22:34:08 +01:00
|
|
|
}
|
2018-06-23 20:13:33 +02:00
|
|
|
|
2019-08-03 23:17:17 +02:00
|
|
|
debug("Connected!");
|
2017-11-20 20:15:14 +01:00
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
#ifdef INFLUXDB_FEATURE
|
|
|
|
influxdb_begin();
|
|
|
|
#endif
|
2017-11-20 20:42:02 +01:00
|
|
|
|
|
|
|
// Initialize and configure the sensors
|
2019-08-04 11:56:18 +02:00
|
|
|
#ifdef SENSOR_APDS9930
|
|
|
|
if (sensor_apds9930_begin()) {
|
|
|
|
sensors[SENSOR_LIGHT] = &apds9930_light;
|
2019-03-31 17:01:04 +02:00
|
|
|
}
|
2019-08-04 11:56:18 +02:00
|
|
|
#endif
|
2019-08-03 23:17:17 +02:00
|
|
|
|
2019-08-04 11:56:18 +02:00
|
|
|
#ifdef SENSOR_APDS9960
|
|
|
|
if (sensor_apds9960_begin()) {
|
2020-02-18 20:06:03 +01:00
|
|
|
sensors[SENSOR_LIGHT] = &apds9960_light;
|
2019-08-04 11:56:18 +02:00
|
|
|
}
|
|
|
|
#endif
|
2019-08-03 23:17:17 +02:00
|
|
|
|
2019-08-04 11:56:18 +02:00
|
|
|
#ifdef SENSOR_BME280
|
2019-01-27 18:49:28 +01:00
|
|
|
//Temperature + pressure
|
2019-08-04 11:56:18 +02:00
|
|
|
if (sensor_bme280_begin(BME_ADDRESS)) {
|
|
|
|
sensors[SENSOR_TEMPERATURE] = &bme280_temperature;
|
|
|
|
sensors[SENSOR_HUMIDITY] = &bme280_humidity;
|
|
|
|
sensors[SENSOR_PRESSURE] = &bme280_pressure;
|
2018-06-23 20:13:33 +02:00
|
|
|
}
|
2019-08-04 11:56:18 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SENSOR_WIND
|
|
|
|
sensors[SENSOR_WINDSPEED] = &wind_speed;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SENSOR_BATTERY
|
|
|
|
sensors[SENSOR_BAT_VOLTAGE] = &battery_voltage;
|
|
|
|
sensors[SENSOR_BATCHARGESTATE] = &battery_charging;
|
|
|
|
sensors[SENSOR_ESAVEMODE] = &isEnergySavingMode;
|
|
|
|
#endif
|
2017-11-20 20:42:02 +01:00
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
#ifdef WEBUPDATER_FEATURE
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifndef BATTERY_POWERED
|
2019-08-04 12:46:42 +02:00
|
|
|
setupWebUpdater(DEVICE_NAME, WiFi.localIP().toString());
|
2018-12-02 17:06:06 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
2018-07-11 11:49:58 +02:00
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
//It's magic! leave in
|
2017-11-20 20:42:02 +01:00
|
|
|
delay(100);
|
2018-06-24 15:53:58 +02:00
|
|
|
|
2022-05-15 22:34:36 +02:00
|
|
|
#ifdef RESET_ESP_TIMEINTERVAL
|
|
|
|
// if millis() reached interval (1h) restart ESP
|
|
|
|
if (millis() >= RESET_ESP_TIME_INTERVAL_MS)
|
|
|
|
{
|
|
|
|
// TODO test
|
|
|
|
ESP.restart();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifdef BATTERY_POWERED
|
2019-08-03 23:17:17 +02:00
|
|
|
debug("battery powered");
|
2018-07-12 22:30:30 +02:00
|
|
|
_loop();
|
|
|
|
|
2018-06-24 15:53:58 +02:00
|
|
|
digitalWrite(STATUS_LED_PIN, LOW);
|
2018-07-12 22:30:30 +02:00
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
criticalBatCheck();
|
2018-07-13 10:21:59 +02:00
|
|
|
|
2018-07-12 22:30:30 +02:00
|
|
|
WiFi.mode(WIFI_OFF);
|
|
|
|
WiFi.forceSleepBegin();
|
|
|
|
|
2019-08-03 23:17:17 +02:00
|
|
|
debug("deep sleep");
|
|
|
|
|
2018-07-12 22:30:30 +02:00
|
|
|
// the ESP.deepSleep requires microseconds as input, after the sleep the system will run into the setup routine
|
|
|
|
ESP.deepSleep(POWERSAVING_SLEEP_S * 1000000, WAKE_RF_DEFAULT);
|
2018-07-19 20:13:08 +02:00
|
|
|
delay(100);
|
2018-07-12 22:30:30 +02:00
|
|
|
#endif
|
2017-10-20 00:13:40 +02:00
|
|
|
}
|
|
|
|
|
2018-06-24 12:00:51 +02:00
|
|
|
//*************************************************************************//
|
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifdef BATTERY_POWERED
|
2018-12-02 17:06:06 +01:00
|
|
|
void criticalBatCheck() {
|
2019-08-04 11:56:18 +02:00
|
|
|
float volt = battery_voltage();
|
2019-01-06 15:21:03 +01:00
|
|
|
if (volt <= BAT_EMERGENCY_DEEPSLEEP_VOLTAGE) {
|
2019-08-03 23:17:17 +02:00
|
|
|
debug("Bat Voltage: " + String(volt) + " V");
|
|
|
|
debug("Low battery, going into deep sleep.");
|
2019-02-03 19:10:38 +01:00
|
|
|
// Casting to an unsigned int, so it fits into the integer range
|
|
|
|
ESP.deepSleep(1U * EMERGENCY_SLEEP_S * 1000000); // battery low, shutting down
|
2018-07-19 20:13:08 +02:00
|
|
|
delay(100);
|
2018-07-13 10:02:50 +02:00
|
|
|
}
|
2018-07-13 20:20:56 +02:00
|
|
|
}
|
2019-01-27 18:49:28 +01:00
|
|
|
#endif
|
2018-07-13 20:20:56 +02:00
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
|
2018-07-13 20:20:56 +02:00
|
|
|
void loop() {
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifdef BATTERY_POWERED
|
2018-07-12 22:30:30 +02:00
|
|
|
delay(50);
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
#ifdef WEBUPDATER_FEATURE
|
2018-06-24 16:54:57 +02:00
|
|
|
if (UPDATE_WEBSERVER_INTVERVAL_S * 1000 / DELAY_LOOP_MS <= update_webserver_cnt) {
|
|
|
|
update_webserver_cnt = 0;
|
|
|
|
doWebUpdater();
|
|
|
|
}
|
2018-12-02 17:06:06 +01:00
|
|
|
#endif
|
2017-12-09 18:08:37 +01:00
|
|
|
|
2019-02-02 10:09:00 +01:00
|
|
|
|
2018-07-12 22:30:30 +02:00
|
|
|
_loop();
|
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
//Needed to give WIFI time to function properly
|
2018-07-12 22:30:30 +02:00
|
|
|
delay(DELAY_LOOP_MS);
|
|
|
|
|
|
|
|
update_sensor_cnt++;
|
2018-12-02 17:06:06 +01:00
|
|
|
|
|
|
|
#ifdef WEBUPDATER_FEATURE
|
2018-07-12 22:30:30 +02:00
|
|
|
update_webserver_cnt++;
|
2018-12-02 17:06:06 +01:00
|
|
|
#endif
|
2018-07-12 22:30:30 +02:00
|
|
|
}
|
2018-06-23 20:13:33 +02:00
|
|
|
|
2018-07-12 22:30:30 +02:00
|
|
|
void _loop() {
|
|
|
|
|
2019-01-27 18:49:28 +01:00
|
|
|
#ifndef BATTERY_POWERED
|
2019-08-03 23:17:17 +02:00
|
|
|
if (UPDATE_SENSOR_INTERVAL_S * 1000 / DELAY_LOOP_MS > update_sensor_cnt) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-12 22:30:30 +02:00
|
|
|
#endif
|
2019-08-03 23:17:17 +02:00
|
|
|
|
2019-08-04 11:56:18 +02:00
|
|
|
#ifdef defined(BATTERY_POWERED) && defined(SENSOR_WIND)
|
|
|
|
if (energySavingMode() == 1) {
|
2018-12-02 17:06:06 +01:00
|
|
|
// Disable expensive tasks
|
2019-08-04 11:56:18 +02:00
|
|
|
sensors[SENSOR_WINDSPEED] = 0;
|
|
|
|
} else {
|
|
|
|
sensors[SENSOR_WINDSPEED] = &wind_speed;
|
|
|
|
}
|
2019-03-31 16:17:57 +02:00
|
|
|
#endif
|
2019-08-04 11:56:18 +02:00
|
|
|
|
|
|
|
update_sensor_cnt = 0;
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < VALUES; i++) {
|
|
|
|
if (sensors[i]) {
|
|
|
|
currentSensorData[i] = sensors[i]();
|
2018-12-02 17:06:06 +01:00
|
|
|
} else {
|
2019-08-04 13:18:28 +02:00
|
|
|
currentSensorData[i] = nan("no value");
|
2018-12-02 17:06:06 +01:00
|
|
|
}
|
2019-08-04 11:56:18 +02:00
|
|
|
}
|
2019-08-03 23:17:17 +02:00
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
#ifdef SERIAL_FEATURE
|
|
|
|
logToSerial(currentSensorData);
|
|
|
|
#endif
|
2017-10-20 00:13:40 +02:00
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
delay(100);
|
2018-07-12 22:30:30 +02:00
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
#ifdef INFLUXDB_FEATURE
|
|
|
|
pushToInfluxDB(DEVICE_NAME, currentSensorData);
|
|
|
|
#endif
|
2019-01-27 18:49:28 +01:00
|
|
|
|
2018-12-02 17:06:06 +01:00
|
|
|
#ifdef WEBUPDATER_FEATURE
|
2019-08-04 12:46:42 +02:00
|
|
|
setSensorData(currentSensorData);
|
2018-07-12 22:30:30 +02:00
|
|
|
#endif
|
2022-05-09 09:42:42 +02:00
|
|
|
|
|
|
|
#ifdef HOMEBRIDGE_WEBSTAT
|
|
|
|
hb_webstat_loop(currentSensorData);
|
|
|
|
#endif
|
|
|
|
|
2018-06-24 12:00:51 +02:00
|
|
|
}
|
|
|
|
|
2019-08-04 12:08:31 +02:00
|
|
|
void logToSerial(float sensorValues[]) {
|
|
|
|
Serial.println("");
|
|
|
|
Serial.println("Current readings:");
|
|
|
|
Serial.println("Temperature: " + String(sensorValues[SENSOR_TEMPERATURE]) + " °C");
|
|
|
|
Serial.println("Humidity: " + String(sensorValues[SENSOR_HUMIDITY]) + " %");
|
|
|
|
Serial.println("Light: " + String(sensorValues[SENSOR_LIGHT]) + " Lux");
|
|
|
|
Serial.println("Windspeed: " + String(sensorValues[SENSOR_WINDSPEED]) + " km/h");
|
|
|
|
Serial.println("Pressure: " + String(sensorValues[SENSOR_PRESSURE]) + " hPa");
|
|
|
|
Serial.println("Bat Voltage: " + String(sensorValues[SENSOR_BAT_VOLTAGE]) + " V");
|
|
|
|
Serial.println("Bat charge state: " + String(sensorValues[SENSOR_BATCHARGESTATE]));
|
|
|
|
Serial.println("Energy saving: " + String(sensorValues[SENSOR_ESAVEMODE]));
|
2022-05-09 09:42:42 +02:00
|
|
|
}
|