Skip to content

Commit

Permalink
Increased lift power to 7.5%
Browse files Browse the repository at this point in the history
It was originally at 5%
  • Loading branch information
Isopod00 committed May 10, 2024
1 parent 4df9ce2 commit 35e8021
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/rovr_control.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
max_drive_power: 1.0 # Measured in Duty Cycle (0.0-1.0)
max_turn_power: 1.0 # Measured in Duty Cycle (0.0-1.0)
skimmer_belt_power: -0.3 # Measured in Duty Cycle (0.0-1.0)
skimmer_lift_manual_power: 0.05 # Measured in Duty Cycle (0.0-1.0)
skimmer_lift_manual_power: 0.075 # Measured in Duty Cycle (0.0-1.0)
autonomous_field_type: "top" # The type of field ("top", "bottom", "nasa")
lift_dumping_position: -1000 # Measured in encoder counts!
lift_digging_position: -3200 # Measured in encoder counts!
2 changes: 1 addition & 1 deletion src/rovr_control/rovr_control/main_control_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self) -> None:
self.declare_parameter("max_drive_power", 1.0) # Measured in Duty Cycle (0.0-1.0)
self.declare_parameter("max_turn_power", 1.0) # Measured in Duty Cycle (0.0-1.0)
self.declare_parameter("skimmer_belt_power", -0.3) # Measured in Duty Cycle (0.0-1.0)
self.declare_parameter("skimmer_lift_manual_power", 0.05) # Measured in Duty Cycle (0.0-1.0)
self.declare_parameter("skimmer_lift_manual_power", 0.075) # Measured in Duty Cycle (0.0-1.0)
self.declare_parameter("lift_dumping_position", -1000) # Measured in encoder counts
self.declare_parameter("lift_digging_position", -3200) # Measured in encoder counts

Expand Down

0 comments on commit 35e8021

Please sign in to comment.