remove self power off after measurement

This commit is contained in:
interfisch 2021-04-10 15:51:31 +02:00
parent a3f5d0d1bb
commit fe56696b4e
1 changed files with 4 additions and 5 deletions

View File

@ -220,13 +220,12 @@ void loop() {
}
#define STAYONTIME_AFTER_SENT 5000
#define STAYONTIME_IDLE 20000 //how long to stay on (ms) after no change in weight detected
if (millis() > MAXONTIME || (weight_sent && millis()>weight_sent_time+STAYONTIME_AFTER_SENT) || millis()>last_weightchange+STAYONTIME_IDLE) {
//#define STAYONTIME_AFTER_SENT 5000
//if (millis() > MAXONTIME || (weight_sent && millis()>weight_sent_time+STAYONTIME_AFTER_SENT) || millis()>last_weightchange+STAYONTIME_IDLE) {
if (millis() > MAXONTIME || millis()>last_weightchange+STAYONTIME_IDLE) {
powerOff();
}