#Default configuration  

# INTERVAL specifies how many milliseconds to wait till we re-read the hdaps value
INTERVAL = integer(min=1,default=500)
POSITIONFILE = string(default='/sys/devices/platform/hdaps/position')
CALIBRATIONFILE = string(default='/sys/devices/platform/hdaps/calibrate')
# Not used atm
SENSITIVITY = integer(default=20)
# 120 seems to be a nice default, ~140 was, what I measured
TILTING_SENSITIVITY = integer(default=120)
# TILTING_THRESHOLD is the amount of difference we allow in the last
# TILTING_LOOKBACK steps to appear until we consider a state to be unstable
TILTING_LOOKBACK = integer(default=6)
TILTING_THRESHOLD = integer(default=10)
# for INTERVAL=250 a length of 8 means that we look back 2 seconds
HISTORY_LENGTH = integer(default=30)
