Move calibration values (#441)
* initial commit
* moved constants
old-commit-hash: 53c6ca6589
commatwo_master
parent
acce43eb0f
commit
4e8ae9e452
3 changed files with 19 additions and 18 deletions
@ -0,0 +1,11 @@ |
||||
import math |
||||
|
||||
class Filter: |
||||
MIN_SPEED = 7 # m/s (~15.5mph) |
||||
MAX_YAW_RATE = math.radians(3) # per second |
||||
|
||||
class Calibration: |
||||
UNCALIBRATED = 0 |
||||
CALIBRATED = 1 |
||||
INVALID = 2 |
||||
|
Loading…
Reference in new issue