State machine thresholds
The properties listed on this page determine the levels of the delta values upon which the state machine determines to change a sensor from one state to the next. The state transition diagram is shown here as a reminder; for more information on the state machine see FIXME.
releasedToApproachedThreshold
int32_t tlSensors.data[<n>].releasedToApproachedThreshold
If a sensor is in released state and the delta value is more than this
threshold, the state is changed to releasedToApproached.
approachedToReleasedThreshold
int32_t tlSensors.data[<n>].approachedToReleasedThreshold
If a sensor is in appraoched state and the delta value is less than this
threshold, the state is changed to approachedToReleased. This value should
always be less than or equal to releasedToApproachedThreshold. Typically it
is about 10% smaller.
approachedToPressedThreshold
int32_t tlSensors.data[<n>].approachedToPressedThreshold
If a sensor is in approached state and the delta value is more than this
threshold, the state is changed to approachedToPressed. This value should
always be larger than or equal to releasedToApproachedThreshold.
pressedToApproachedThreshold
int32_t tlSensors.data[<n>].pressedToApproachedThreshold
If a sensor is in pressed state and the delta value is less than this
threshold, the state is changed to pressedToApproached. This value should
always be less than or equal to approachedToPressedThreshold. Typically it is
about 10% smaller.