DeskControl/src/lib/limits.h

10 lines
240 B
C

#ifndef __limits
#define __limits
// Values above this will be disregarded as invalid
#define HeightMeasurementMax 1500
// How much the measurements can change to still be considered "stable"
#define HeightMeasurementStableDelta 5
#endif