-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a singer constants class for the singer constants. Started work…
…ing on changing the singer joystick command to actual linear velocity
- Loading branch information
1 parent
981cdf0
commit 6f8c06b
Showing
2 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from utils.units import in2m | ||
|
||
"""Defines constants that the singer uses""" | ||
|
||
#movement that the singer can have if it's being manually controlled by operator | ||
#used in slew rate limiter. All arbitrary numbers | ||
MAX_MAN_VEL_MPS = in2m(12.0) | ||
MAX_MANUAL_DEG_PER_SEC = 30 | ||
|
||
#for operator input to elevator control function in operator interface | ||
GEARBOX_GEAR_RATIO = 32 | ||
SPROCKET_RADIUS_IN = 1.5 |