mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-08-21 16:23:50 +08:00
083ce17c02
* initial commit * moved constants
12 lines
178 B
Python
12 lines
178 B
Python
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
|
|
|