changed threshold for steps

This commit is contained in:
toni
2016-10-01 13:32:55 +02:00
parent 729340031d
commit 7fcdaa9c86
3 changed files with 5 additions and 5 deletions

View File

@@ -34,9 +34,9 @@ private:
Timestamp blockUntil;
bool waitForUp = false;
const Timestamp blockTime = Timestamp::fromMS(150); // 150-250 looks good
const float upperThreshold = +0.4*0.6f; // + is usually smaller than down (look at graphs)
const float lowerThreshold = -0.8*0.6f; // the 0.8 is for testing!
const Timestamp blockTime = Timestamp::fromMS(250); // 150-250 looks good
const float upperThreshold = +0.4*0.6f; // + is usually smaller than down (look at graphs)
const float lowerThreshold = -1.5*0.6f; // the 0.8 is for testing!
public:

View File

@@ -52,7 +52,7 @@ public:
/** ctor */
ActivityButterPressure() : currentActivity(STAY){
;
}
}
/** add new sensor readings that were received at the given timestamp */