Hello
I am using the sodatracker with the LIS3DE acceleromter, and I was wondering whether the readings from the accelerometer reading are relative to the set threhsold or not.
Let’s say I have configured my device like this
accelerometer.enableInterrupt1(
LIS3DE::XHigh | LIS3DE::XLow | LIS3DE::YHigh | LIS3DE::YLow | LIS3DE::ZHigh | LIS3DE::ZLow,
80* 2.0 / 100.0, accDuration, LIS3DE::MovementRecognition);
where the threshold is 80% of 2G
If the interruption is triggered, is the reading from the Accelerometer LIS3DE relative to the threshold or not? In other words, is the measurement = ACC or measurement = ACC + threhsold?
Thanks in advance!