5 Commits

Author SHA1 Message Date
6291c9311a cache more between builds 2020-12-12 16:10:06 +01:00
0817fcf492 use host time to calculate the real event time 2020-12-12 15:58:05 +01:00
747e7bbbf8 Merge branch 'notimeoverflow' into 'master'
prevent time variable overflow

See merge request lukas/pumpensteuerung!6
2020-12-12 14:13:34 +00:00
cb3850134a remove unneeded files
use different functions in heater to provide code readability
2020-12-10 18:51:49 +01:00
ee91b36c66 prevent time variable overflow 2020-12-09 19:53:59 +01:00
19 changed files with 236 additions and 183 deletions

View File

@ -6,6 +6,7 @@ stages:
cache: cache:
paths: paths:
- "~/.platformio" - "~/.platformio"
- ./interface/node_modules
before_script: before_script:
- "pip install -U platformio" - "pip install -U platformio"
@ -13,7 +14,10 @@ before_script:
build: build:
stage: build stage: build
script: "platformio run -e esp12e" script:
- "platformio run -e esp12e"
- vers=$(grep -Po '[0-9]*\.[0-9]*\.[0-9]*(?=\")' ./src/Pins.h)
- mv .pio/build/esp12e/*.bin Pumpensteuerung-${vers}.bin
artifacts: artifacts:
paths: paths:
- .pio/build/esp12e/*.bin - ./*.bin

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1,12 +0,0 @@
{
"name":"ESP8266 React",
"icons":[
{
"src":"/app/icon.png",
"sizes":"48x48 72x72 96x96 128x128 256x256"
}
],
"start_url":"/",
"display":"fullscreen",
"orientation":"any"
}

View File

@ -1,22 +0,0 @@
/* Just supporting latin due to size constrains on the esp chip */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url(../fonts/li.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(../fonts/re.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium'), url(../fonts/me.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +1,6 @@
import React, {Component} from 'react'; import React, {Component} from 'react';
import {Box, List, ListItem, ListItemText} from '@material-ui/core'; import {Box, List, ListItem, ListItemText} from '@material-ui/core';
import { import {FormButton, restController, RestControllerProps, RestFormLoader, SectionContent} from '../components';
FormButton,
restController,
RestControllerProps,
RestFormLoader,
SectionContent
} from '../components';
import {ENDPOINT_ROOT} from "../api"; import {ENDPOINT_ROOT} from "../api";
import {GeneralInformaitonState} from "./types"; import {GeneralInformaitonState} from "./types";
import RefreshIcon from "@material-ui/icons/Refresh"; import RefreshIcon from "@material-ui/icons/Refresh";
@ -21,12 +15,6 @@ class GeneralInformation extends Component<GeneralInformationRestControllerProps
componentDidMount() { componentDidMount() {
this.props.loadData(); this.props.loadData();
// this.intervalhandler = window.setInterval(() => {
// this.props.loadData();
// console.log("refreshing data");
// console.log(this.props.data)
// }, 10000);
} }
componentWillUnmount() { componentWillUnmount() {
@ -44,19 +32,23 @@ class GeneralInformation extends Component<GeneralInformationRestControllerProps
<ListItem> <ListItem>
<ListItemText <ListItemText
primary="Chip läuft seit:" primary="Chip läuft seit:"
secondary={this.stringifyTime(props.data.runtime)} secondary={this.stringifyTime(props.data.runtime) + ' / ' + this.getRealTimeString(props.data.runtime)}
/> />
</ListItem> </ListItem>
<ListItem> <ListItem>
<ListItemText <ListItemText
primary="Zuletzt zu wenig Wasser:" primary="Zuletzt zu wenig Wasser:"
secondary={props.data.lastWaterOutage !== 0 ? "vor " + this.stringifyTime(props.data.lastWaterOutage) : "noch nie!"} secondary={props.data.lastWaterOutage !== 0 ? "vor " +
this.stringifyTime(props.data.lastWaterOutage) + ' / ' +
this.getRealTimeString(props.data.lastWaterOutage) : "noch nie!"}
/> />
</ListItem> </ListItem>
<ListItem> <ListItem>
<ListItemText <ListItemText
primary="Letzer Pumpenzyklus" primary="Letzer Pumpenzyklus"
secondary={props.data.lastpumptime !== 0 ? "vor " + this.stringifyTime(props.data.lastpumptime) : "noch nie!"} secondary={props.data.lastpumptime !== 0 ? "vor " +
this.stringifyTime(props.data.lastpumptime) + ' / ' +
this.getRealTimeString(props.data.lastpumptime) : "noch nie!"}
/> />
</ListItem> </ListItem>
<ListItem> <ListItem>
@ -100,7 +92,7 @@ class GeneralInformation extends Component<GeneralInformationRestControllerProps
* stringify seconds to a pretty format * stringify seconds to a pretty format
* @param sec number of seconds * @param sec number of seconds
*/ */
stringifyTime(sec: number): string { private stringifyTime(sec: number): string {
if (sec >= 86400) { if (sec >= 86400) {
// display days // display days
return (Math.trunc(sec / 86400) + "d " + Math.trunc((sec % 86400) / 3600) + "h " + Math.trunc((sec % 3600) / 60) + "min " + sec % 60 + "sec"); return (Math.trunc(sec / 86400) + "d " + Math.trunc((sec % 86400) / 3600) + "h " + Math.trunc((sec % 3600) / 60) + "min " + sec % 60 + "sec");
@ -115,6 +107,20 @@ class GeneralInformation extends Component<GeneralInformationRestControllerProps
return (sec + "sec"); return (sec + "sec");
} }
} }
private getRealTimeString(runtime: number): string {
const timestamp = Date.now();
const a = new Date(timestamp - (runtime * 1000));
const months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
const year = a.getFullYear();
const month = months[a.getMonth()];
const date = a.getDate();
const hour = a.getHours();
const min = "0" + a.getMinutes();
const sec = "0" + a.getSeconds();
return '[' + date + ' ' + month + ' ' + year + ' ' + hour + ':' + min.substr(-2) + ':' + sec.substr(-2) + ']';
}
} }
export default restController(GENERALINFORMATION_SETTINGS_ENDPOINT, GeneralInformation); export default restController(GENERALINFORMATION_SETTINGS_ENDPOINT, GeneralInformation);

View File

@ -20,11 +20,12 @@ build_flags=
lib_compat_mode = strict lib_compat_mode = strict
; Uncomment & modify the lines below in order to configure OTA updates ; Uncomment & modify the lines below in order to configure OTA updates
upload_flags = ;upload_flags =
--port=8266 ; --port=8266
--auth=esp-react ; --auth=esp-react
--host_port=14515 ; --host_port=14515
upload_port = 192.168.0.230 ;upload_port = 192.168.0.230
;upload_protocol = espota
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200

View File

@ -4,6 +4,7 @@
#include "GeneralInfoService.h" #include "GeneralInfoService.h"
#include "Pins.h" #include "Pins.h"
#include "Timer.h"
GeneralInfoService::GeneralInfoService(AsyncWebServer *server, float *lasthum, float *lasttemp) : GeneralInfoService::GeneralInfoService(AsyncWebServer *server, float *lasthum, float *lasttemp) :
hum(lasthum), hum(lasthum),
@ -21,10 +22,12 @@ void GeneralInfoService::reply(AsyncWebServerRequest *request) {
root["temp"] = *temp; root["temp"] = *temp;
root["hum"] = *hum; root["hum"] = *hum;
root["lastpumptime"] = lastPumpTime != 0 ? (millis() - lastPumpTime) / 1000 : 0; const uint32_t systime = Timer::getSystemSeconds();
root["lastWaterOutage"] = lastWaterOutage != 0 ? (millis() - lastWaterOutage) / 1000 : 0;
root["lastPumpDuration"] = lastPumpDuration != 0 ? lastPumpDuration / 1000 : 0; root["lastpumptime"] = lastPumpTime != 0 ? systime - lastPumpTime : 0;
root["runtime"] = millis() / 1000; root["lastWaterOutage"] = lastWaterOutage != 0 ? systime - lastWaterOutage : 0;
root["lastPumpDuration"] = lastPumpDuration != 0 ? lastPumpDuration : 0;
root["runtime"] = systime;
root["watersensor"] = digitalRead(WasserSensorPin) ? true : false; root["watersensor"] = digitalRead(WasserSensorPin) ? true : false;
root["pressuresensor"] = digitalRead(DruckSensorPin) ? true : false; root["pressuresensor"] = digitalRead(DruckSensorPin) ? true : false;
@ -35,14 +38,14 @@ void GeneralInfoService::reply(AsyncWebServerRequest *request) {
request->send(response); request->send(response);
} }
void GeneralInfoService::setlastPumpTime(unsigned long lastPumpTime) { void GeneralInfoService::setlastPumpTime(uint32_t lastPumpTime) {
this->lastPumpTime = lastPumpTime; this->lastPumpTime = lastPumpTime;
} }
void GeneralInfoService::setlastWaterOutage(unsigned long lastWaterOutage) { void GeneralInfoService::setlastWaterOutage(uint32_t lastWaterOutage) {
this->lastWaterOutage = lastWaterOutage; this->lastWaterOutage = lastWaterOutage;
} }
void GeneralInfoService::setPumpDuration(unsigned long lastPumpDuration) { void GeneralInfoService::setPumpDuration(uint32_t lastPumpDuration) {
this->lastPumpDuration = lastPumpDuration; this->lastPumpDuration = lastPumpDuration;
} }

View File

@ -23,19 +23,19 @@ public:
* sets the last time when the pump was on * sets the last time when the pump was on
* @param lastPumpTime pump time in ms * @param lastPumpTime pump time in ms
*/ */
void setlastPumpTime(unsigned long lastPumpTime); void setlastPumpTime(uint32_t lastPumpTime);
/** /**
* sets the last time of a water outage * sets the last time of a water outage
* @param lastWaterOutage last wateroutage time in ms * @param lastWaterOutage last wateroutage time in ms
*/ */
void setlastWaterOutage(unsigned long lastWaterOutage); void setlastWaterOutage(uint32_t lastWaterOutage);
/** /**
* sets the duration of the last pump cycle * sets the duration of the last pump cycle
* @param lastPumpDuration duration in ms * @param lastPumpDuration duration in ms
*/ */
void setPumpDuration(unsigned long lastPumpDuration); void setPumpDuration(uint32_t lastPumpDuration);
private: private:
void reply(AsyncWebServerRequest* request); void reply(AsyncWebServerRequest* request);

View File

@ -5,10 +5,101 @@
#include "Heating.h" #include "Heating.h"
#include "Pins.h" #include "Pins.h"
Heating::Heating() : mHeizungTicker(),
mLuefterTicker(),
mTurnOffTicker(),
msettings(nullptr),
mHeatingStatus(),
lasttemp(0),
lasthum(0),
sensor() {}
void Heating::init(unsigned mode, const SettingState *settings) {
msettings = settings;
void Heating::init(unsigned mode, const SettingState* settings) {
switch (mode) { switch (mode) {
case TIME: { case TIME: {
this->handleTimeHeater();
break;
}
case HUMIDITY:
mHeatingStatus = false;
sensor.setPin(TempSensorPin);
sensor.onData([this, settings](float hum, float temp) {
schedule_function([hum, temp, settings, this]() {
Serial.printf("Temp: %gdegC\n", temp);
Serial.printf("Humid: %g%%\n", hum);
this->lasttemp = temp;
this->lasthum = hum;
this->handleHeatingEvents();
});
});
sensor.onError([this](uint8_t e) {
this->lasttemp = -1.0;
this->lasthum = -1.0;
// emergency turnoff of heating
if(mHeatingStatus){
digitalWrite(HeizungPin, LOW);
}
schedule_function([e]() {
Serial.printf("Error: %d\n", e);
});
});
mHeizungTicker.attach(10, [this]() {
sensor.read();
});
break;
default:
break;
}
}
float *Heating::getLastTemp() {
return &lasttemp;
}
float *Heating::getLastHum() {
return &lasthum;
}
void Heating::handleHeatingEvents() {
if (this->lasthum > (float) msettings->heatUp) {
// turn off active turnoff timers
mLuefterTicker.detach();
Serial.println("heating should run now!");
// turn on heating and fan
digitalWrite(LuefterPin, HIGH);
digitalWrite(HeizungPin, HIGH);
mHeatingStatus = true;
} else if (this->lasthum < (float) msettings->heatLow) {
// if humidity too low turn off heating and fan after 60secs
digitalWrite(HeizungPin, LOW);
Serial.println("heating should NOT run now!");
// if heating status in on set ticker to turn of fan in 60sec
if (mHeatingStatus) {
mLuefterTicker.once((float) msettings->fanRuntime, []() {
// turn off fan
digitalWrite(LuefterPin, LOW);
schedule_function([]() {
Serial.println("turning off fan");
});
});
}
mHeatingStatus = false;
}
}
void Heating::handleTimeHeater() {
const unsigned percentOn = 20; const unsigned percentOn = 20;
const unsigned refreshperiod = 900; const unsigned refreshperiod = 900;
@ -36,80 +127,4 @@ void Heating::init(unsigned mode, const SettingState* settings) {
func(); func();
mHeizungTicker.attach(refreshperiod, func); mHeizungTicker.attach(refreshperiod, func);
break;
}
case HUMIDITY:
mHeatingStatus = false;
sensor.setPin(TempSensorPin);
sensor.onData([this, settings](float hum, float temp) {
schedule_function([hum, temp, settings, this]() {
Serial.printf("Temp: %gdegC\n", temp);
Serial.printf("Humid: %g%%\n", hum);
this->lasttemp = temp;
this->lasthum = hum;
if (hum > (float)settings->heatUp) {
// turn off active turnoff timers
mLuefterTicker.detach();
Serial.println("heating should run now!");
// turn on heating and fan
digitalWrite(LuefterPin, HIGH);
digitalWrite(HeizungPin, HIGH);
mHeatingStatus = true;
} else if (hum < (float)settings->heatLow) {
// if humidity too low turn off heating and fan after 60secs
digitalWrite(HeizungPin, LOW);
Serial.println("heating should NOT run now!");
// if heating status in on set ticker to turn of fan in 60sec
if (mHeatingStatus) {
mLuefterTicker.once((float)settings->fanRuntime, []() {
// turn off fan
digitalWrite(LuefterPin, LOW);
schedule_function([]() {
Serial.println("turning off fan");
});
});
}
mHeatingStatus = false;
}
});
});
sensor.onError([this](uint8_t e) {
this->lasttemp = -1.0;
this->lasthum = -1.0;
schedule_function([e]() {
Serial.printf("Error: %d\n", e);
});
});
mHeizungTicker.attach(10, [this]() {
sensor.read();
});
break;
default:
break;
}
} }
float *Heating::getLastTemp() {
return &lasttemp;
}
float *Heating::getLastHum() {
return &lasthum;
}
Heating::Heating() : mHeizungTicker(),
mLuefterTicker(),
mTurnOffTicker(),
mHeatingStatus(),
lasttemp(0),
lasthum(0),
sensor() {}

View File

@ -13,9 +13,23 @@ class Heating {
public: public:
Heating(); Heating();
/**
* initialize the heater
* @param mode select the operating mode
* @param settings a settings object is needed for HUMIDITY mode to get percent values set by user
*/
void init(unsigned mode, const SettingState* settings); void init(unsigned mode, const SettingState* settings);
/**
* get the last captured humidity value
* @return humidity value
*/
float* getLastHum(); float* getLastHum();
/**
* get the last captured temperature value
* @return temperature value
*/
float* getLastTemp(); float* getLastTemp();
enum MODES {TIME, HUMIDITY}; enum MODES {TIME, HUMIDITY};
@ -24,10 +38,25 @@ private:
Ticker mLuefterTicker; Ticker mLuefterTicker;
Ticker mTurnOffTicker; Ticker mTurnOffTicker;
const SettingState* msettings;
bool mHeatingStatus; bool mHeatingStatus;
float lasttemp; float lasttemp;
float lasthum; float lasthum;
DHT22 sensor; DHT22 sensor;
/**
* handle events after successfully received a humidity value
* - turn on/off of heating
* - afterrun of fan
*/
void handleHeatingEvents();
/**
* handle events for time-heating mode
* when to turn on/off heating + fan
*/
void handleTimeHeater();
}; };

View File

@ -16,6 +16,6 @@
#define TempSensorPin D4 #define TempSensorPin D4
// version info // version info
#define VERSION "v1.2.0" #define VERSION "v1.2.2"
#endif //PUMPENSTEUERUNG_PINS_H #endif //PUMPENSTEUERUNG_PINS_H

10
src/Timer.cpp Normal file
View File

@ -0,0 +1,10 @@
//
// Created by lukas on 09.12.20.
//
#include <Arduino.h>
#include "Timer.h"
uint32_t Timer::getSystemSeconds() {
return (uint32_t)(micros64() / 1000000);
}

18
src/Timer.h Normal file
View File

@ -0,0 +1,18 @@
//
// Created by lukas on 09.12.20.
//
#ifndef PUMPENSTEUERUNG_TIMER_H
#define PUMPENSTEUERUNG_TIMER_H
class Timer {
public:
/**
* get system time in seconds
* @return system time in seconds
*/
static uint32_t getSystemSeconds();
};
#endif //PUMPENSTEUERUNG_TIMER_H

View File

@ -5,6 +5,7 @@
#include "Pins.h" #include "Pins.h"
#include "GeneralInfoService.h" #include "GeneralInfoService.h"
#include "SettingsService.h" #include "SettingsService.h"
#include "Timer.h"
bool allow; bool allow;
bool error = false; bool error = false;
@ -18,7 +19,7 @@ Ticker pumpendauer;
//WifiManager mang; //WifiManager mang;
Heating mHeat; Heating mHeat;
unsigned long turnontime = 0; uint32_t turnontime = 0;
AsyncWebServer server(80); AsyncWebServer server(80);
ESP8266React esp8266React(&server); ESP8266React esp8266React(&server);
@ -31,7 +32,7 @@ void pumpeSchalten(bool on) {
if (on) { if (on) {
Serial.println("versuche Pumpe EIN zuschalten"); Serial.println("versuche Pumpe EIN zuschalten");
// refresh last pump counter // refresh last pump counter
generalinfo.setlastPumpTime(millis()); generalinfo.setlastPumpTime(Timer::getSystemSeconds());
} else { } else {
Serial.println("versuche Pumpe AUS zuschalten"); Serial.println("versuche Pumpe AUS zuschalten");
} }
@ -40,7 +41,7 @@ void pumpeSchalten(bool on) {
if (on) { if (on) {
pumpendauer.once((float)settingsservice.getSettings()->maxpumpduration + 1, []() { pumpendauer.once((float)settingsservice.getSettings()->maxpumpduration + 1, []() {
//erlaube keine einschaltung von mehr als 60 sek //erlaube keine einschaltung von mehr als 60 sek
if (millis() - turnontime >= (unsigned)settingsservice.getSettings()->maxpumpduration * 1000 && turnontime != 0) { if (Timer::getSystemSeconds() - turnontime >= (unsigned)settingsservice.getSettings()->maxpumpduration && turnontime != 0) {
//error zu lange //error zu lange
Serial.println("\n\npumpe lief mehr als 10 Minuten durchgaengig"); Serial.println("\n\npumpe lief mehr als 10 Minuten durchgaengig");
pumpeSchalten(false); pumpeSchalten(false);
@ -48,11 +49,11 @@ void pumpeSchalten(bool on) {
} }
}); });
} else { } else {
generalinfo.setPumpDuration(millis() - turnontime); generalinfo.setPumpDuration(Timer::getSystemSeconds() - turnontime);
} }
// save pump start time // save pump start time
turnontime = millis(); turnontime = Timer::getSystemSeconds();
digitalWrite(SchuetzPin, on); digitalWrite(SchuetzPin, on);
Serial.println("[Erfolg] pumpe wird geschalten"); Serial.println("[Erfolg] pumpe wird geschalten");
@ -90,7 +91,7 @@ void WasserSensorCheck() {
//kein Wasser dh timer auf 10min stellen //kein Wasser dh timer auf 10min stellen
// refresh wateroutage counter // refresh wateroutage counter
generalinfo.setlastWaterOutage(millis()); generalinfo.setlastWaterOutage(Timer::getSystemSeconds());
allow = false; allow = false;
Serial.println("Schalte pumpe aus"); Serial.println("Schalte pumpe aus");