Skip to content

Commit

Permalink
AP_Gripper: Add delay before grab
Browse files Browse the repository at this point in the history
  • Loading branch information
lthall committed Jul 6, 2023
1 parent fb34f1d commit a43bb2f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 8 additions & 0 deletions libraries/AP_Gripper/AP_Gripper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ const AP_Param::GroupInfo AP_Gripper::var_info[] = {
// @Units: s
AP_GROUPINFO("AUTOCLOSE", 7, AP_Gripper, config.autoclose_time, GRIPPER_AUTOCLOSE_DEFAULT),

// @Param: DELAYGRAB
// @DisplayName: Gripper delay close time
// @Description: Time in seconds that gripper waits before closing, 0 to disable
// @User: Advanced
// @Range: 0.25 255
// @Units: s
AP_GROUPINFO("DELAYGRAB", 8, AP_Gripper, config.delaygrab_time, GRIPPER_AUTOCLOSE_DEFAULT),

AP_GROUPEND
};

Expand Down
1 change: 1 addition & 0 deletions libraries/AP_Gripper/AP_Gripper.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class AP_Gripper {
AP_Int16 neutral_pwm; // PWM value sent to gripper when not grabbing or releasing
AP_Int8 regrab_interval; // Time in seconds that EPM gripper will regrab the cargo to ensure grip has not weakend
AP_Float autoclose_time; // Automatic close time (in seconds)
AP_Float delaygrab_time; // Delay grab time (in seconds)
AP_Int16 uavcan_hardpoint_id;

gripper_state state = STATE_RELEASED;
Expand Down
15 changes: 12 additions & 3 deletions libraries/AP_Gripper/AP_Gripper_Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ void AP_Gripper_Servo::grab()
config.state = AP_Gripper::STATE_GRABBING;

// move the servo to the grab position
SRV_Channels::set_output_pwm(SRV_Channel::k_gripper, config.grab_pwm);
if (!is_positive(config.delaygrab_time)) {
SRV_Channels::set_output_pwm(SRV_Channel::k_gripper, config.grab_pwm);
}
_last_grab_or_release = AP_HAL::millis();
gcs().send_text(MAV_SEVERITY_INFO, "Gripper load grabbing");
AP::logger().Write_Event(LogEvent::GRIPPER_GRAB);
Expand Down Expand Up @@ -98,8 +100,15 @@ bool AP_Gripper_Servo::grabbed() const
void AP_Gripper_Servo::update_gripper()
{
// Check for successful grabbed or released
if (config.state == AP_Gripper::STATE_GRABBING && has_state_pwm(config.grab_pwm)) {
config.state = AP_Gripper::STATE_GRABBED;
if (config.state == AP_Gripper::STATE_GRABBING) {
if (has_state_pwm(config.grab_pwm)) {
config.state = AP_Gripper::STATE_GRABBED;
} else {
// move the servo to the release position
if (is_positive(config.delaygrab_time) && (AP_HAL::millis() - _last_grab_or_release > (config.delaygrab_time * 1000.0))) {
SRV_Channels::set_output_pwm(SRV_Channel::k_gripper, config.grab_pwm);
}
}
} else if (config.state == AP_Gripper::STATE_RELEASING && has_state_pwm(config.release_pwm)) {
config.state = AP_Gripper::STATE_RELEASED;
}
Expand Down

0 comments on commit a43bb2f

Please sign in to comment.